.travis.yml 351 B

123456789101112131415161718192021222324
  1. language: node_js
  2. cache:
  3. yarn: true
  4. directories:
  5. - node_modules
  6. notifications:
  7. email: false
  8. node_js:
  9. - '9'
  10. - '8'
  11. - '6'
  12. install:
  13. - yarn
  14. script:
  15. - yarn lint
  16. - yarn build
  17. - yarn test
  18. after_success:
  19. - npm install -g travis-deploy-once@4
  20. - travis-deploy-once "yarn semantic-release"
  21. branches:
  22. except:
  23. - /^v\d+\.\d+\.\d+$/