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 9b1b4c9 commit 0b5fe49Copy full SHA for 0b5fe49
.github/workflows/test.yml
@@ -4,17 +4,20 @@ on: [push]
4
5
jobs:
6
test:
7
- runs-on: ubuntu-latest
8
-
9
strategy:
10
matrix:
11
- node-version: [18, 20, 22, 'lts/*']
+ os: [ubuntu-latest, windows-latest, macos-latest]
+ node-version: [20, 22, 'lts/*']
+ fail-fast: false
12
+
13
+ runs-on: ${{ matrix.os }}
14
15
steps:
- - uses: actions/checkout@v2
16
+ - uses: actions/checkout@v4
17
- name: Set up Node.js
- uses: actions/setup-node@v2
18
+ uses: actions/setup-node@v4
19
with:
20
node-version: ${{ matrix.node-version }}
21
- run: npm ci
- - run: npm run test
22
+ - run: npm run build
23
+ - run: npm test
0 commit comments