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