File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 55 node : circleci/node@1.1.6 # used to publish new NPM version
66
77jobs :
8+ unit :
9+ description : Checks the code formatting
10+ executor :
11+ name : node/default
12+ tag : ' 12'
13+ steps :
14+ - checkout
15+ - node/with-cache :
16+ steps :
17+ - run : npm ci
18+ - run : npm run format:check
19+
820 publish :
21+ description : Publishes the new version of the plugin to NPM
922 executor :
1023 name : node/default
1124 tag : ' 12'
1932workflows :
2033 build :
2134 jobs :
35+ - unit
36+
2237 - cypress/install :
2338 post-steps :
2439 - run : npm run check:markdown
Original file line number Diff line number Diff line change 1313 "report:coverage" : " nyc report --reporter=html" ,
1414 "dev:no:coverage" : " start-test 1234 'cypress open --env coverage=false'" ,
1515 "format" : " prettier --write '*.js'" ,
16+ "format:check" : " prettier --check '*.js'" ,
1617 "start:test:backend" : " nyc --silent node test-backend" ,
1718 "cy:backend" : " cypress open --config-file cypress-backend.json" ,
1819 "dev:backend" : " start-test start:test:backend 3003 cy:backend" ,
You can’t perform that action at this time.
0 commit comments