File tree 1 file changed +22
-0
lines changed
1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ workflows:
2
2
version : 2.1
3
3
node-multi-build :
4
4
jobs :
5
+ - check-coding-style
5
6
- node-v10
6
7
- node-v12
7
8
- node-v14
@@ -17,6 +18,9 @@ workflows:
17
18
18
19
version : 2.1
19
20
21
+ orbs :
22
+ shellcheck : circleci/shellcheck@volatile
23
+
20
24
commands :
21
25
show-npm-version :
22
26
steps :
@@ -182,6 +186,24 @@ jobs:
182
186
name : coveralls
183
187
command : npm run coveralls
184
188
189
+ check-coding-style :
190
+ docker :
191
+ - image : cimg/node:current
192
+ steps :
193
+ - show-npm-version
194
+ - checkout
195
+ - shellcheck/install
196
+ - install-dependencies :
197
+ cache-id : solc-js
198
+ - run :
199
+ name : Check for javascript/typescript coding style
200
+ command : npm run lint
201
+ - shellcheck/check :
202
+ ignore-dirs : |
203
+ ./.git
204
+ ./node_modules
205
+ ./dist
206
+
185
207
hardhat-core-default-solc :
186
208
# Runs out of memory on 'medium'.
187
209
resource_class : medium+
You can’t perform that action at this time.
0 commit comments