Badasper/project-lvl3-s382

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
---

language: node_js

node_js:
  - node

env:
  global:
    - CC_TEST_REPORTER_ID=893ee54c7f2931df518ffca9a822757d45cf2e25c8524cb86bc3dcb34cf1c1c6
    
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:
  - make lint
  - make test

after_script:
  - ./cc-test-reporter format-coverage -t lcov ./coverage/lcov.info
  - ./cc-test-reporter -d after-build --exit-code $TRAVIS_TEST_RESULT