Skip to content

Commit

Permalink
Updated GitHub Actions to use Node.js v20
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisn committed Feb 7, 2024
1 parent 8affc44 commit 7db22f7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
strategy:
matrix:
include:
- node-version: 16.x
- node-version: 20.x
browser: "ChromeHeadlessWithoutAutoplayPolicy"
# - node-version: 16.x
# - node-version: 20.x
# browser: "FirefoxHeadless"

steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
strategy:
matrix:
include:
- node-version: 16.x
- node-version: 20.x
browser: "ChromeHeadlessWithoutAutoplayPolicy"

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x
- run: npm ci
- run: npm run lint -- --max-warnings=0
- run: npm run test -- --browsers=${{ matrix.browser }}
Expand All @@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x
registry-url: https://registry.npmjs.org/
- run: npm ci
- name: Set env vars for latest release
Expand Down

0 comments on commit 7db22f7

Please sign in to comment.