File tree Expand file tree Collapse file tree 3 files changed +20
-11
lines changed Expand file tree Collapse file tree 3 files changed +20
-11
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ jobs :
3+ build :
4+ docker :
5+ - image : circleci/node:10-browsers
6+ working_directory : ~/repo
7+ steps :
8+ - checkout
9+ - restore_cache :
10+ keys :
11+ - v1-dependencies-{{ checksum "package-lock.json" }}
12+ - v1-dependencies-
13+ - run : npm ci
14+ - save_cache :
15+ paths :
16+ - node_modules
17+ key : v1-dependencies-{{ checksum "package-lock.json" }}
18+ - run : npm test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1919 "prettier" : " prettier --write '*.js' 'src/**/*.js'" ,
2020 "lint:js" : " eslint '*.js' 'scripts/**/*.js' 'src/**/*.js'" ,
2121 "lint:html" : " htmlhint 'src/**/*.html'" ,
22- "lint" : " npm run lint:js && npm run lint:html"
22+ "lint" : " npm run lint:js && npm run lint:html" ,
23+ "test" : " npm run lint && npm run build"
2324 },
2425 "dependencies" : {
2526 "@fortawesome/fontawesome-svg-core" : " ^1.2.2" ,
You can’t perform that action at this time.
0 commit comments