Skip to content

Commit b763c47

Browse files
ScottyPoiholgerd77
andauthored
Node 22 support (#3669)
* workflows: fix node-versions workflow to actually use different versions * workflow: add node 22 to node-versions workflow --------- Co-authored-by: Holger Drewes <[email protected]>
1 parent d4d9b37 commit b763c47

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/node-versions.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node-version: [18, 20]
12+
node-version: [18, 20, 22]
1313
fail-fast: false
1414
steps:
1515
- uses: actions/checkout@v4
1616
with:
1717
submodules: recursive
1818

19-
- name: Use Node.js 20
19+
- name: Use Node.js ${{ matrix.node-version }}
2020
uses: actions/setup-node@v4
2121
with:
22-
node-version: 20
22+
node-version: ${{ matrix.node-version }}
2323
cache: 'npm'
2424

2525
- run: npm ci

0 commit comments

Comments
 (0)