2016-07-08 18:10:18 -04:00
|
|
|
language: node_js
|
|
|
|
node_js:
|
2021-10-15 14:56:10 -04:00
|
|
|
- "16"
|
2016-07-08 18:10:18 -04:00
|
|
|
script:
|
2017-06-23 13:42:34 -04:00
|
|
|
- npm run eslint
|
2021-08-02 11:34:02 -04:00
|
|
|
- npm run prettier-check
|
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;
|