We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84ffb12 commit bb0e175Copy full SHA for bb0e175
.github/workflows/ci.yml
@@ -3,17 +3,19 @@ on: [push, pull_request]
3
jobs:
4
tests:
5
runs-on: ubuntu-latest
6
+ strategy:
7
+ matrix:
8
+ node: [18, 20]
9
+ continue-on-error: ${{ matrix.node == 20 }}
10
steps:
11
- name: Checkout
12
uses: actions/checkout@v4
13
with:
14
fetch-depth: 0
- - name: Setup Nodejs Env
- run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
15
- name: Setup Nodejs
16
uses: actions/setup-node@v4
17
- node-version: ${{ env.NODE_VER }}
18
+ node-version: ${{ matrix.node }}
19
- name: Install dependencies
20
run: npm ci
21
- name: Validate package-lock.json changes
0 commit comments