File tree Expand file tree Collapse file tree 5 files changed +8730
-10
lines changed
Expand file tree Collapse file tree 5 files changed +8730
-10
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "extends" : [
3+ " plugin:cypress-dev/general"
4+ ]
5+ }
Original file line number Diff line number Diff line change 1- machine :
2- node :
3- # need Node 8 for latest semantic release
4- version : 8
5- test :
6- override :
7- - npm run semantic-release || true
1+ version : 2
2+
3+ workflows :
4+ version : 2
5+ tests :
6+ jobs :
7+ - test
8+
9+ jobs :
10+ test :
11+ docker :
12+ - image : circleci/node:8
13+ steps :
14+ - checkout
15+ - run :
16+ name : Install dependencies
17+ command : npm install
18+ - run :
19+ name : Lint code
20+ command : npm run lint
21+ - run :
22+ name : Run tests
23+ command : npm test
24+ - run :
25+ name : Semantic release
26+ command : npm run semantic-release || true
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ const globals = require('globals')
33module . exports = {
44 rules : {
55 'no-assigning-return-values' : require ( './lib/rules/no-assigning-return-values' ) ,
6- 'no-unnecessary-waiting' : require ( './lib/rules/no-unnecessary-waiting' )
6+ 'no-unnecessary-waiting' : require ( './lib/rules/no-unnecessary-waiting' ) ,
77 } ,
88 configs : {
9- recommended : require ( './lib/config/recommended' )
9+ recommended : require ( './lib/config/recommended' ) ,
1010 } ,
1111 environments : {
1212 globals : {
You can’t perform that action at this time.
0 commit comments