Skip to content

Commit

Permalink
Rename travis npm script to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
overlookmotel committed Jan 28, 2019
1 parent 48b77e7 commit 0e513f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: node_js

script:
- "npm run travis"
- "npm run ci"

node_js:
- "10"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"coveralls": "npm run cover-main && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"cover-main": "npm run build && npm run cover-only",
"cover-only": "cross-env COVERAGE=true istanbul cover _mocha --report lcovonly -- -t 1000 -R spec 'test/**/*.test.js'",
"travis": "if [ $COVERAGE ]; then npm run coveralls; else npm test; fi"
"ci": "if [ $COVERAGE ]; then npm run coveralls; else npm test; fi"
},
"engines": {
"node": ">=6"
Expand Down

0 comments on commit 0e513f3

Please sign in to comment.