We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f44db52 commit 2595417Copy full SHA for 2595417
1 file changed
.github/workflows/nodejs.yml
@@ -15,15 +15,19 @@ jobs:
15
16
strategy:
17
matrix:
18
- node-version: [16, 18, 20, 22]
+ # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
19
+ node-version: ['20', '22', '23', 'current']
20
21
steps:
22
- uses: actions/checkout@v4
23
+
24
- name: Use Node.js ${{ matrix.node-version }}
25
uses: actions/setup-node@v4
26
with:
27
node-version: ${{ matrix.node-version }}
28
29
- run: npm ci
30
31
- run: npm test
32
env:
33
CI: true
0 commit comments