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 3391e96 commit 0d6692cCopy full SHA for 0d6692c
.github/workflows/ci.yml
@@ -9,17 +9,20 @@ on:
9
jobs:
10
tests:
11
runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ node: [18, 20]
15
+ continue-on-error: ${{ matrix.node == 20 }}
16
+
17
steps:
18
- name: Checkout
19
uses: actions/checkout@v4
20
with:
21
fetch-depth: 0
- - name: Setup Nodejs Env
- run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
22
- name: Setup Nodejs
23
uses: actions/setup-node@v4
24
- node-version: ${{ env.NODE_VER }}
25
+ node-version: ${{ matrix.node }}
26
- name: Install dependencies
27
run: npm ci
28
- name: Validate package-lock.json changes
0 commit comments