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 11name : CI
2-
3- on :
2+ ' on ' :
43 push :
54 paths-ignore :
6- - ' docs/**'
5+ - docs/**
76 - ' *.md'
87 pull_request :
98 paths-ignore :
10- - ' docs/**'
9+ - docs/**
1110 - ' *.md'
12-
1311jobs :
1412 test :
1513 runs-on : ${{ matrix.os }}
16-
1714 strategy :
1815 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
2224 steps :
2325 - uses : actions/checkout@v2
24-
2526 - name : Use Node.js
2627 uses : actions/setup-node@v2
2728 with :
2829 node-version : ${{ matrix.node-version }}
29-
3030 - name : Install Dependencies
3131 run : |
3232 npm install --ignore-scripts
33-
3433 - name : Run Tests
3534 run : |
3635 npm test
37-
3836 automerge :
3937 needs : test
4038 runs-on : ubuntu-latest
39+ permissions :
40+ pull-requests : write
41+ contents : write
4142 steps :
42- - uses : fastify/github-action-merge-dependabot@v2.5.0
43+ - uses : fastify/github-action-merge-dependabot@v3
4344 with :
4445 github-token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments