We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a59caf commit 798cd09Copy full SHA for 798cd09
.github/workflows/ci.yml
@@ -9,6 +9,10 @@ on:
9
jobs:
10
tests:
11
runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ node: [20, 24]
15
+ continue-on-error: ${{ matrix.node == 24 }}
16
steps:
17
- name: Checkout
18
uses: actions/checkout@v4
@@ -17,7 +21,7 @@ jobs:
21
- name: Setup Nodejs
22
uses: actions/setup-node@v4
19
23
with:
20
- node-version-file: '.nvmrc'
24
+ node-version: ${{ matrix.node }}
25
- name: Install dependencies
26
run: npm ci
27
- name: Lint
0 commit comments