File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed
Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 3232 run : npm run build
3333
3434 - name : Test
35- run : npm run test
35+ run : npm test
36+
37+ - name : Lint
38+ run : npm run lint
3639
3740 - name : Coverage
3841 run : npm run coverage
Original file line number Diff line number Diff line change 1111
1212 strategy :
1313 matrix :
14- node-version : [12 .x]
14+ node-version : [14 .x]
1515
1616 steps :
1717 - uses : actions/checkout@v1
3333 - name : Test
3434 run : npm test
3535
36+ - name : Lint
37+ run : npm run lint
38+
3639 - name : Build
3740 run : npm run build
3841
Original file line number Diff line number Diff line change 2222 "semantic-release" : " semantic-release --no-ci" ,
2323 "test:watch" : " NODE_ENV=test mocha --watch" ,
2424 "test:nock:reload" : " NODE_ENV=test RECORD=true mocha" ,
25- "test" : " npm run lint && NODE_ENV=test nyc mocha" ,
25+ "test" : " NODE_ENV=test nyc mocha" ,
2626 "lint" : " eslint lib/**/*.ts" ,
27- "build" : " npm run lint && tsc" ,
27+ "build" : " tsc" ,
2828 "coverage" : " nyc report --reporter=text-lcov > coverage.lcov && codecov" ,
2929 "docs" : " typedoc --mode file --out docs/ --name 'Ideal Postcodes Node.js Client' --theme minimal --excludePrivate --hideGenerator lib/" ,
30- "prepublishOnly" : " npm run test && npm run build"
30+ "prepublishOnly" : " npm run build"
3131 },
3232 "files" : [
3333 " dist"
You can’t perform that action at this time.
0 commit comments