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 f34f4df commit b37f69cCopy full SHA for b37f69c
.github/workflows/ci.yml
@@ -9,18 +9,20 @@ on:
9
jobs:
10
test:
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: Lint
0 commit comments