We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e357daf commit 596eb88Copy full SHA for 596eb88
.github/workflows/ci.yml
@@ -12,18 +12,25 @@ permissions:
12
jobs:
13
test-node:
14
runs-on: ubuntu-latest
15
+ timeout-minutes: 10
16
17
strategy:
18
matrix:
19
node-version: [12, 14, 16]
20
21
steps:
- - uses: actions/checkout@v2
22
+ - name: Checkout repository
23
+ uses: actions/checkout@v3
24
+
25
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v2
26
+ uses: actions/setup-node@v3
27
with:
28
node-version: ${{ matrix.node-version }}
- - run: npm ci
- - run: npm test
29
30
+ - name: Install dependencies
31
+ run: npm ci
32
33
+ - name: Run tests
34
+ run: npm test
35
env:
36
CI: true
0 commit comments