.travis.yml 272 B

123456789101112131415
  1. language: node_js
  2. node_js:
  3. - "8"
  4. install: npm install
  5. jobs:
  6. include:
  7. - stage: test
  8. script: bash ./scripts/travis-test.sh
  9. - stage: deploy
  10. script: bash ./scripts/travis-deploy.sh
  11. cache:
  12. directories:
  13. - node_modules
  14. notifications:
  15. email: false