Skip to content

Commit

Permalink
Node 22 support (#3669)
Browse files Browse the repository at this point in the history
* workflows:  fix node-versions workflow to actually use different versions

* workflow: add node 22 to node-versions workflow

---------

Co-authored-by: Holger Drewes <Holger.Drewes@gmail.com>
  • Loading branch information
ScottyPoi and holgerd77 committed Sep 16, 2024
1 parent d4d9b37 commit b763c47
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/node-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
node-version: [18, 20, 22]
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Use Node.js 20
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: 20
node-version: ${{ matrix.node-version }}
cache: 'npm'

- run: npm ci
Expand Down

0 comments on commit b763c47

Please sign in to comment.