Skip to content

Commit 596eb88

Browse files
1 parent e357daf commit 596eb88

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/ci.yml

+11-4
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,25 @@ permissions:
1212
jobs:
1313
test-node:
1414
runs-on: ubuntu-latest
15+
timeout-minutes: 10
1516

1617
strategy:
1718
matrix:
1819
node-version: [12, 14, 16]
1920

2021
steps:
21-
- uses: actions/checkout@v2
22+
- name: Checkout repository
23+
uses: actions/checkout@v3
24+
2225
- name: Use Node.js ${{ matrix.node-version }}
23-
uses: actions/setup-node@v2
26+
uses: actions/setup-node@v3
2427
with:
2528
node-version: ${{ matrix.node-version }}
26-
- run: npm ci
27-
- run: npm test
29+
30+
- name: Install dependencies
31+
run: npm ci
32+
33+
- name: Run tests
34+
run: npm test
2835
env:
2936
CI: true

0 commit comments

Comments
 (0)