sexyoung/o18n

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: node_js
node_js:
  - "8.10"
before_install:
  - curl -o- -L https://yarnpkg.com/install.sh
  - export PATH="$HOME/.yarn/bin:$PATH"
install:
  - yarn
cache:
  yarn: true
  directories:
    - ".eslintcache"
    - "node_modules"
script:
  - yarn run coverage
  - sh ./generate-coverall.sh
  - yarn run coveralls
after_success:
  - bash <(curl -s https://codecov.io/bash) -f coverage/coverage-final.json
branches:
  only:
    - master
    - develop