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 a013686 commit 0911a08Copy full SHA for 0911a08
.github/workflows/main.yml
@@ -9,6 +9,14 @@ permissions: read-all
9
jobs:
10
build-and-test:
11
runs-on: ubuntu-latest
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ node-version:
16
+ - 24
17
+ - 22
18
+ - 20
19
+ - 18
20
steps:
21
- name: Checkout tree
22
uses: actions/checkout@v4
@@ -17,7 +25,7 @@ jobs:
25
uses: actions/setup-node@v4
26
with:
27
check-latest: true
- node-version-file: .nvmrc
28
+ node-version: ${{ matrix.node-version }}
29
30
- run: corepack enable
23
31
0 commit comments