Files
liquidjs/.travis.yml
T
2018-08-27 23:54:43 +08:00

14 lines
307 B
YAML

language: node_js
node_js:
- "8"
- "6"
- "4"
- "0.12"
before_script:
- npm install -g mocha
script:
- if [[ $(echo "$TRAVIS_NODE_VERSION >= 6" | bc -l) ]]; then npm run test; fi
- npm run e2e
after_success:
- if [[ $(echo "$TRAVIS_NODE_VERSION >= 6" | bc -l) ]]; then npm run coveralls; fi