graphbrainz/.travis.yml

22 lines
305 B
YAML
Raw Normal View History

language: node_js
node_js:
2017-03-19 08:09:50 +00:00
- "4"
- "5"
- "6"
2017-03-19 07:56:29 +00:00
- "7"
# Use container-based Travis infrastructure.
sudo: false
branches:
only:
- master
script:
2016-12-07 08:23:02 +00:00
- yarn test
2016-12-07 08:26:14 +00:00
after_success:
- $(yarn bin)/nyc report --reporter=text-lcov | $(yarn bin)/coveralls
- bash <(curl -s https://codecov.io/bash)