obj2gltf/.travis.yml

13 lines
390 B
YAML
Raw Normal View History

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:
- 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;