.travis.yml 360 B

1234567891011121314151617181920
  1. language: node_js
  2. cache:
  3. directories:
  4. - ~/.npm
  5. notifications:
  6. email: false
  7. node_js:
  8. - '11'
  9. - '10'
  10. - '8'
  11. - '6'
  12. - '4'
  13. before_install:
  14. - if [ "$TRAVIS_PULL_REQUEST_BRANCH" == "" ]; then echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" >> .npmrc; fi
  15. after_success:
  16. - npm run semantic-release
  17. branches:
  18. except:
  19. - /^v\d+\.\d+\.\d+$/