gerarts/style-provider

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
cache: npm
language: node_js
node_js:
  - "node"
env:
  global:
    CC_TEST_REPORTER_ID=7ccbd7269baf736d63763e1d91f2ea5361994590af9a39ef7bcf14b4c538117c
before_install:
  - 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                         # Install npm dependencies
script:
  - npm test                            # Frontend linting & specs
after_script:
  - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT