graphbrainz/.travis.yml
2017-03-19 00:56:29 -07:00

19 lines
289 B
YAML

language: node_js
node_js:
- "6"
- "7"
# Use container-based Travis infrastructure.
sudo: false
branches:
only:
- master
script:
- yarn test
after_success:
- $(yarn bin)/nyc report --reporter=text-lcov | $(yarn bin)/coveralls
- bash <(curl -s https://codecov.io/bash)