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 45e551e commit 3f4d987Copy full SHA for 3f4d987
.github/workflows/ci.yml
@@ -9,17 +9,19 @@ 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
steps:
17
- name: Checkout
18
uses: actions/checkout@v4
19
with:
20
fetch-depth: 0
- - name: Setup Nodejs Env
- run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
21
- name: Setup Nodejs
22
uses: actions/setup-node@v4
23
- node-version: ${{ env.NODE_VER }}
24
+ node-version: ${{ matrix.node }}
25
- name: Install dependencies
26
run: npm ci
27
- name: Validate package-lock.json changes
0 commit comments