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