We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bce9c2 commit b6aaad7Copy full SHA for b6aaad7
1 file changed
.github/workflows/test.yaml
@@ -7,6 +7,9 @@ on:
7
jobs:
8
run-tests:
9
runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ node-version: [22]
13
14
steps:
15
- name: Checkout code
@@ -18,7 +21,7 @@ jobs:
18
21
- name: Set up Node.js
19
22
uses: actions/setup-node@v3
20
23
with:
- node-version: 20, 22, 24
24
+ node-version: ${{ matrix.node-version }}
25
- name: Install dependencies
26
run: npm install
27
- name: Run tests
0 commit comments