Skip to content

Commit

Permalink
Apparently the Github CI npm tests cannot function without a lock file.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisl8 committed Dec 28, 2024
1 parent 2adab39 commit c39140e
Show file tree
Hide file tree
Showing 4 changed files with 6,464 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'npm'
cache-dependency-path: ./package-lock.json
- run: ./scripts/versionNumberUpdate.sh
- run: npm i
- run: npm run build
2 changes: 2 additions & 0 deletions .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'npm'
cache-dependency-path: ./package-lock.json
- run: ./scripts/versionNumberUpdate.sh
- run: npm i
- run: node server/server.js
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ server/utilities/version.js
/test-results/
/playwright-report/
/playwright/.cache/
/package-lock.json
Loading

0 comments on commit c39140e

Please sign in to comment.