env:
  global:
    CC_TEST_REPORTER_ID=22a2352a9676d828f7d318b915639d055173334762a6ee1bc2cd2b3586296776
language: node_js
node_js:
  - 12
addons:
  chrome: stable
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
install:
  - npm install
script:
  - npm run test:ci
after_script:
  - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT