Skip to content

Commit

Permalink
Trying to get package-lock downloaded again
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Torvund Bennett committed Sep 12, 2024
1 parent 3d306b6 commit c6f0f0d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,13 @@ jobs:
if: steps.node-cache.outputs.cache-hit != 'true'
run: npm ci
#- run: npm run build --if-present

- name: Install dependencies (npm ci if cache exists, npm install if not)
run: |
if [ -f package-lock.json ]; then
npm ci
else
npm install
fi
- run: npm test
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c6f0f0d

Please sign in to comment.