We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e1a5ba commit 63885fdCopy full SHA for 63885fd
1 file changed
.github/workflows/workflow.yml
@@ -1,20 +1,25 @@
1
name: Run tests and upload coverage
2
3
-on:
+on:
4
push
5
6
jobs:
7
test:
8
name: Run tests and collect coverage
9
runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ node-version: [18, 20, 22, 24]
13
steps:
14
- name: Checkout
15
uses: actions/checkout@v4
16
with:
17
fetch-depth: 2
18
- - name: Set up Node
19
+ - name: Set up Node ${{ matrix.node-version }}
20
uses: actions/setup-node@v4
21
+ with:
22
+ node-version: ${{ matrix.node-version }}
23
24
- name: Install dependencies
25
run: npm install
0 commit comments