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 25c0a00 commit 22a89f5Copy full SHA for 22a89f5
.github/workflows/ci.yml
@@ -9,10 +9,6 @@ on:
9
jobs:
10
tests:
11
runs-on: ubuntu-latest
12
- strategy:
13
- matrix:
14
- node: [20, 24]
15
- continue-on-error: ${{ matrix.node == 24 }}
16
steps:
17
- name: Checkout
18
uses: actions/checkout@v4
@@ -21,7 +17,7 @@ jobs:
21
- name: Setup Nodejs
22
uses: actions/setup-node@v4
23
19
with:
24
- node-version: ${{ matrix.node }}
20
+ node-version-file: '.nvmrc'
25
- name: Install dependencies
26
run: npm ci
27
- name: Validate package-lock.json changes
.nvmrc
@@ -1 +1 @@
1
-20
+24
0 commit comments