This repository was archived by the owner on Jul 12, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111 - name : Eslint
1212 run : npm run lint
1313 - name : Jest
14- run : npm run test
14+ run : npm run test:ci
15+ - name : Codecov
16+ env :
17+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
18+ run :
19+ curl -s https://codecov.io/bash | bash -s -- -t $CODECOV_TOKEN
Original file line number Diff line number Diff line change 11node_modules /
2- package-lock.json
2+ package-lock.json
3+ .nyc_output
Original file line number Diff line number Diff line change 1010 "lint" : " eslint bin/ src/ tests/" ,
1111 "fix" : " eslint --fix bin/ src/ tests/" ,
1212 "test" : " ava" ,
13+ "test:ci" : " nyc ava" ,
1314 "docs" : " jsdoc2md src/*.js > docs/api.md"
1415 },
1516 "files" : [
4041 "eslint" : " ^6.8.0" ,
4142 "eslint-config-airbnb-base" : " ^14.1.0" ,
4243 "eslint-plugin-import" : " ^2.20.1" ,
43- "jsdoc-to-markdown" : " ^5.0.3"
44+ "jsdoc-to-markdown" : " ^5.0.3" ,
45+ "nyc" : " ^15.0.1"
4446 }
4547}
You can’t perform that action at this time.
0 commit comments