File tree Expand file tree Collapse file tree 1 file changed +15
-14
lines changed Expand file tree Collapse file tree 1 file changed +15
-14
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 : ${{ matrix.os }}
16
-
17
14
strategy :
18
15
matrix :
19
- node-version : [12, 14, 16]
20
- os : [macos-latest, ubuntu-latest, windows-latest]
21
-
16
+ node-version :
17
+ - 12
18
+ - 14
19
+ - 16
20
+ os :
21
+ - macos-latest
22
+ - ubuntu-latest
23
+ - windows-latest
22
24
steps :
23
25
- uses : actions/checkout@v2
24
-
25
26
- name : Use Node.js
26
27
uses : actions/setup-node@v2
27
28
with :
28
29
node-version : ${{ matrix.node-version }}
29
-
30
30
- name : Install Dependencies
31
31
run : |
32
32
npm install --ignore-scripts
33
-
34
33
- name : Run Tests
35
34
run : |
36
35
npm test
37
-
38
36
automerge :
39
37
needs : test
40
38
runs-on : ubuntu-latest
39
+ permissions :
40
+ pull-requests : write
41
+ contents : write
41
42
steps :
42
- - uses : fastify/github-action-merge-dependabot@v2.5.0
43
+ - uses : fastify/github-action-merge-dependabot@v3
43
44
with :
44
45
github-token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments