graphbrainz/.travis.yml
Brian Beck 898ec78a6f Add a schema extension API and several extensions (#42)
* Add a schema extension API and several extensions
* Update graphql-markdown to use new diffSchema function
* Update Node support
2017-10-19 01:00:21 -07:00

26 lines
419 B
YAML

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