conveyal/modeify

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
sudo: false
language: node_js
cache:
  yarn: true
notifications:
  email: false
node_js:
  - '6'
before_script:
  - yarn global add codecov
script:
  - yarn run lint
  - yarn run build
  - yarn run cover
  - codecov
after_success:
  - npm run semantic-release
branches:
  except:
    - /^v\d+\.\d+\.\d+$/