+9
.github/workflows/test.yml
+9
.github/workflows/test.yml
···
14
timeout-minutes: 20
15
strategy:
16
fail-fast: true
17
+
matrix:
18
+
nodever:
19
+
[
20
+
'latest',
21
+
'lts/*'
22
+
]
23
permissions:
24
contents: read
25
···
29
30
- name: Setup nodejs
31
uses: https://github.com/actions/setup-node@v4
32
+
with:
33
+
node-version: "${{ matrix.nodever }}"
34
+
check-latest: true
35
36
- name: Install dependencies
37
run: npm ci