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 3da64b2 commit 0007d74Copy full SHA for 0007d74
.github/workflows/tests.yml
@@ -2,18 +2,17 @@ name: tests
2
on: [push, pull_request]
3
jobs:
4
tests:
5
- name: node ${{ matrix.node-version }} / ${{ matrix.os }}
+ name: ${{ matrix.os }}
6
runs-on: ${{ matrix.os }}
7
+ timeout-minutes: 5
8
strategy:
9
+ fail-fast: false
10
matrix:
- node-version: [20]
11
os: [ubuntu-latest, windows-latest, macOS-latest]
12
steps:
13
- uses: actions/checkout@v4
- - name: Use Node.js ${{ matrix.node-version }}
14
- uses: actions/setup-node@v4
+ - uses: actions/setup-node@v4
15
with:
16
- node-version: ${{ matrix.node-version }}
17
- cache: npm
+ node-version-file: .nvmrc
18
- run: npm ci
19
- run: npm test
.nvmrc
@@ -0,0 +1 @@
1
+22
0 commit comments