File tree Expand file tree Collapse file tree 1 file changed +18
-16
lines changed Expand file tree Collapse file tree 1 file changed +18
-16
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
-
3
- on :
2
+ ' on ' :
4
3
push :
5
4
paths-ignore :
6
- - ' docs/**'
5
+ - docs/**
7
6
- ' *.md'
8
7
pull_request :
9
8
paths-ignore :
10
- - ' docs/**'
9
+ - docs/**
11
10
- ' *.md'
12
-
13
11
jobs :
14
12
test :
15
13
runs-on : ubuntu-latest
16
-
17
14
strategy :
18
15
matrix :
19
- node-version : [10, 12, 14, 16]
20
- redis-tag : [5, 6]
16
+ node-version :
17
+ - 10
18
+ - 12
19
+ - 14
20
+ - 16
21
+ redis-tag :
22
+ - 5
23
+ - 6
21
24
services :
22
25
redis :
23
26
image : redis:${{ matrix.redis-tag }}
24
27
ports :
25
- - 6379:6379
26
- options : --entrypoint redis-server
28
+ - ' 6379:6379'
29
+ options : ' --entrypoint redis-server'
27
30
steps :
28
31
- uses : actions/checkout@v2
29
-
30
32
- name : Use Node.js
31
33
uses : actions/setup-node@v2
32
34
with :
33
- node-version : ${{ matrix.node-version }}
34
-
35
+ node-version : ${{ matrix.node-version }}
35
36
- name : Install Dependencies
36
37
run : |
37
38
npm install --ignore-scripts
38
-
39
39
- name : Run Tests
40
40
run : |
41
41
npm test
42
-
43
42
automerge :
44
43
needs : test
45
44
runs-on : ubuntu-latest
45
+ permissions :
46
+ pull-requests : write
47
+ contents : write
46
48
steps :
47
- - uses : fastify/github-action-merge-dependabot@v2.7.1
49
+ - uses : fastify/github-action-merge-dependabot@v3
48
50
with :
49
51
github-token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments