mirror of
https://github.com/CesiumGS/obj2gltf.git
synced 2024-11-23 08:34:14 -05:00
13 lines
390 B
YAML
13 lines
390 B
YAML
language: node_js
|
|
node_js:
|
|
- "12"
|
|
script:
|
|
- npm run eslint
|
|
- npm run prettier-check
|
|
- npm run test -- --failTaskOnError --suppressPassed
|
|
|
|
after_success:
|
|
## 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.
|
|
- npm run coverage && npm run coveralls;
|