env:
  global:
    - CC_TEST_REPORTER_ID=c462905df1bd4d624a09728d869f6f84055b57d8fe3b36385c3081eb326eb01a
language: node_js
node_js:
  - "6"
  - "7"
  - "8"
  - "node"
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:
  - npm test
after_script:
  - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
after_success: 'npm run coveralls'