.travis.yml 241 B

12345678910111213141516171819202122232425
  1. language: node_js
  2. node_js:
  3. - '10.13'
  4. cache:
  5. - npm: true
  6. - yarn: true
  7. matrix:
  8. fast_finish: true
  9. install:
  10. - npm install -g codecov
  11. - yarn install
  12. before_script:
  13. - yarn build
  14. script:
  15. - yarn test
  16. after_script:
  17. - codecov