mirror of
https://github.com/CesiumGS/obj2gltf.git
synced 2025-03-03 06:51:43 -05:00
12 lines
408 B
YAML
12 lines
408 B
YAML
language: node_js
|
|
node_js:
|
|
- "4"
|
|
- "6"
|
|
script:
|
|
- npm run jsHint -- --failTaskOnError
|
|
- 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.
|
|
- if node --version | grep -q ^v6 ; npm run coveralls ; fi
|