We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab13c49 commit b3dde0aCopy full SHA for b3dde0a
.github/workflows/ci.yml
@@ -6,9 +6,13 @@ 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:
@@ -28,15 +32,16 @@ jobs:
28
32
- 5432:5432
29
33
30
34
steps:
31
- - uses: actions/checkout@v2
35
+ - name: Checkout repository
36
+ uses: actions/checkout@v3
37
38
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
39
+ uses: actions/setup-node@v3
40
with:
41
node-version: ${{ matrix.node-version }}
42
- - run: npm ci
43
+ - name: Install dependencies
44
+ run: npm ci
45
- - run: npm test
- env:
- CI: true
- timeout-minutes: 10
46
+ - name: Run tests
47
+ run: npm test
0 commit comments