We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 304f61d + 99c965b commit aa59c26Copy full SHA for aa59c26
1 file changed
.github/workflows/ci.yml
@@ -1,15 +1,21 @@
1
name: CI
2
on:
3
push:
4
- branches: [main]
+ branches:
5
+ - main
6
pull_request:
7
8
9
jobs:
10
build-and-test:
11
name: '${{ matrix.platform }}: node.js ${{ matrix.node-version }}'
12
+ timeout-minutes: 2
13
strategy:
14
matrix:
- platform: [ubuntu-latest, windows-latest, macos-latest]
15
+ platform:
16
+ - ubuntu-latest
17
+ - windows-latest
18
+ - macos-latest
19
node-version:
20
- 18
21
- 20
@@ -20,5 +26,5 @@ jobs:
26
- uses: actions/setup-node@v4
27
with:
22
28
node-version: ${{ matrix.node-version }}
23
- - run: npm install
29
+ - run: npm ci
24
30
- run: npm test
0 commit comments