Skip to content

Commit

Permalink
ci: add node 22 in ci test matrix, use 22 for coverage (#3226)
Browse files Browse the repository at this point in the history
* ci: use node 22 and 23 in ci test matrix, use 22 for coverage

* remove node 23
  • Loading branch information
Uzlopak committed May 9, 2024
1 parent 2a72563 commit 71bf81b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:
- 18
- 20
- 21
- 22
runs-on:
- ubuntu-latest
- windows-latest
Expand All @@ -75,7 +76,7 @@ jobs:
fail-fast: false
max-parallel: 0
matrix:
version: [20, 21]
version: [20, 21, 22]
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Run tests with coverage
id: coverage
if: inputs.runs-on == 'ubuntu-latest' && inputs.node-version == 20
if: inputs.runs-on == 'ubuntu-latest' && inputs.node-version == 22
run: npm run coverage:ci
env:
CI: true
Expand Down

0 comments on commit 71bf81b

Please sign in to comment.