Skip to content

Commit

Permalink
Update github actions and use Node LTS instead of latest.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisl8 committed Oct 3, 2024
1 parent e99469c commit 6156090
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: latest
node-version: lts
cache: 'pnpm'
- run: ./scripts/versionNumberUpdate.sh
- run: pnpm i
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run_install: false
- uses: actions/setup-node@v4
with:
node-version: latest
node-version: lts
- name: Install dependencies
run: pnpm i
- name: Install Playwright Browsers
Expand All @@ -43,7 +43,7 @@ jobs:
run: npm run client-no-browser < /dev/null &
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: latest
node-version: lts
cache: 'pnpm'
- run: ./scripts/versionNumberUpdate.sh
- run: pnpm i
Expand Down

0 comments on commit 6156090

Please sign in to comment.