@@ -31,29 +31,18 @@ jobs:
31
31
- 15
32
32
steps :
33
33
- uses : actions/checkout@v2
34
- - uses : actions/setup-node@v1
34
+ - uses : actions/setup-node@v2
35
35
with :
36
36
node-version : ' ${{ matrix.node }}'
37
37
- run : npm install --production
38
38
- run : npm run test:smoke
39
39
40
- eslint :
41
- name : ESLint Check
40
+ lint :
41
+ name : Linting code and markdown
42
42
runs-on : ubuntu-latest
43
43
needs : smoke
44
44
steps :
45
- - uses : actions/checkout@v2
46
- -
uses :
bradennapier/[email protected]
47
- with :
48
- issueSummary : false
49
- npmInstall : false
50
-
51
- markdown :
52
- name : Markdown Check
53
- runs-on : ubuntu-latest
54
- needs : smoke
55
- steps :
56
- - uses : actions/setup-node@v1
45
+ - uses : actions/setup-node@v2
57
46
with :
58
47
node-version : 14
59
48
- uses : actions/checkout@v2
66
55
ubuntu-latest-node-v14-
67
56
- name : Install Dependencies
68
57
run : npm ci --ignore-scripts
69
- - name : ' Check Markdown '
70
- run : npm start lint.markdown
58
+ - name : ' Check lint '
59
+ run : npm start lint
71
60
72
61
test-node :
73
62
name : ' Node.js [v${{ matrix.node }} / ${{ matrix.os }}]'
@@ -148,7 +137,7 @@ jobs:
148
137
- name : Install libnotify-bin (Linux)
149
138
if : " ${{ matrix.os == 'ubuntu-latest' }}"
150
139
run : sudo apt-get install libnotify-bin
151
- - uses : actions/setup-node@v1
140
+ - uses : actions/setup-node@v2
152
141
with :
153
142
node-version : ' ${{ matrix.node }}'
154
143
- uses : actions/checkout@v2
@@ -186,7 +175,7 @@ jobs:
186
175
timeout-minutes : 20
187
176
runs-on : ubuntu-latest
188
177
steps :
189
- - uses : actions/setup-node@v1
178
+ - uses : actions/setup-node@v2
190
179
with :
191
180
node-version : 14
192
181
- uses : actions/checkout@v2
0 commit comments