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 632e962 commit bc251a6Copy full SHA for bc251a6
1 file changed
.github/workflows/ci.yml
@@ -11,14 +11,18 @@ on:
11
jobs:
12
tests:
13
runs-on: ubuntu-latest
14
+ strategy:
15
+ matrix:
16
+ node: [20, 24]
17
+ continue-on-error: ${{ matrix.node == 24 }}
18
19
steps:
20
- name: Checkout
21
uses: actions/checkout@v4
22
- name: Setup Nodejs
23
uses: actions/setup-node@v4
24
with:
- node-version-file: '.nvmrc'
25
+ node-version: ${{ matrix.node }}
26
27
- name: Install Dependencies
28
run: npm ci
0 commit comments