2016-07-08 18:10:18 -04:00
|
|
|
language: node_js
|
|
|
|
node_js:
|
2021-07-22 19:46:35 -04:00
|
|
|
- "12"
|
2016-07-08 18:10:18 -04:00
|
|
|
script:
|
2017-06-23 13:42:34 -04:00
|
|
|
- npm run eslint
|
2016-07-08 18:10:18 -04:00
|
|
|
- npm run test -- --failTaskOnError --suppressPassed
|
2017-03-13 15:28:51 -04:00
|
|
|
|
|
|
|
after_success:
|
2017-04-04 11:24:39 -04:00
|
|
|
## We only need to run coveralls for one node version (doesn't matter which one).
|
|
|
|
## We also ignore publishing failures, since restarting an existing travis build would otherwise break.
|
2020-02-04 10:11:42 -05:00
|
|
|
- npm run coverage && npm run coveralls;
|