.travis.yml 350 B

123456789101112131415161718192021222324
  1. language: node_js
  2. notifications:
  3. email: false
  4. node_js:
  5. - '8'
  6. - '6'
  7. - '4'
  8. - '0.12'
  9. - '0.10'
  10. matrix:
  11. include:
  12. - node_js: "8"
  13. env: TEST_SUITE=lint
  14. env:
  15. - TEST_SUITE=unit
  16. before_script:
  17. - npm prune
  18. script:
  19. - npm run-script $TEST_SUITE
  20. after_success:
  21. - npm run semantic-release
  22. branches:
  23. except:
  24. - /^v\d+\.\d+\.\d+$/