graphbrainz/.travis.yml

27 lines
419 B
YAML
Raw Normal View History

language: node_js
node_js:
- "6"
2017-03-19 07:56:29 +00:00
- "7"
- "8"
# Use container-based Travis infrastructure.
sudo: false
env:
global:
- FANART_API_KEY=d9e25d5beda1027a1674c1585882309e
- THEAUDIODB_API_KEY=1
branches:
only:
- master
- /^greenkeeper/.*$/
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)