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 26f4597 commit 0309e80Copy full SHA for 0309e80
.github/workflows/test.yml
@@ -4,15 +4,23 @@ on: [push, pull_request]
4
5
jobs:
6
test:
7
+ name: Node.js ${{ matrix.node-version }}
8
runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ node-version:
12
+ - 22
13
+ - 20
14
+ - 18
15
+
16
steps:
17
- name: Checkout code
18
uses: actions/checkout@v4
19
20
- name: Install nodejs
21
uses: actions/setup-node@v4
22
with:
- node-version: 20.x
23
+ node-version: ${{ matrix.node-version }}
24
25
- name: Run tests
26
run: |
0 commit comments