gramps-graphql/data-source-base

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: node_js
cache:
  yarn: true
  directories:
  - node_modules
env:
  global:
  # Code Climate is an excellent tool for tracking code quality.
  # It’s free for open source, too! Set it up here: http://bit.ly/2l0mvp9
  #
  # To track code coverage, you’ll need this test reporter ID.
  # Visit Settings => Test coverage on your Code Climate project dashboard
  - CC_TEST_REPORTER_ID=
node_js:
- 6
- 8
- 9
notifications:
  email: false
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- yarn test
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
after_success:
- yarn build
- yarn semantic-release
branches:
  only:
  - master
  - /^greenkeeper/.*$/