.travis.yml 345 B

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