File tree Expand file tree Collapse file tree 4 files changed +30
-3
lines changed Expand file tree Collapse file tree 4 files changed +30
-3
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ branches : [ main ]
8+
9+ jobs :
10+ build :
11+
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - uses : actions/checkout@v2
16+
17+ - name : Initialize development environment
18+ run : npm install
19+
20+ - name : Run CI check
21+ run : npm run check
Original file line number Diff line number Diff line change 11.gitignore
22.npmignore
33
4+ .github
5+
46src
57
68.eslintrc.js
@@ -9,4 +11,4 @@ rollup.config.js
911pull_request_template.md
1012
1113CODE_OF_CONDUCT.md
12- SECURITY.md
14+ SECURITY.md
Original file line number Diff line number Diff line change 1+ [ ![ CI] ( https://github.com/veghdev/write-npmstat/workflows/CI/badge.svg?branch=main )] ( https://github.com/veghdev/write-npmstat/actions/workflows/ci.yml )
2+
3+
14# About The Project
25
36write-npmstat makes it easy to collect, filter and save npm statistics to csv files.
Original file line number Diff line number Diff line change 88 "prettier" : " prettier -w ./*js ./src/*js" ,
99 "eslint" : " eslint --fix ./*js ./src/*js" ,
1010 "format" : " npm-run-all prettier eslint" ,
11- "rollup" : " rollup -c" ,
1211 "check-prettier" : " prettier -c ./*js ./src/*js" ,
1312 "check-eslint" : " eslint ./*js ./src/*js" ,
14- "check" : " npm-run-all check-prettier check-eslint"
13+ "check-format" : " npm-run-all check-prettier check-eslint" ,
14+ "check" : " npm-run-all check-format" ,
15+ "rollup" : " rollup -c"
1516 },
1617 "repository" : {
1718 "type" : " git" ,
You can’t perform that action at this time.
0 commit comments