.travis.yml 353 B

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