.travis.yml 282 B

123456789101112131415161718192021
  1. language: node_js
  2. node_js: stable
  3. cache:
  4. directories:
  5. - "node_modules"
  6. branches:
  7. only:
  8. - master
  9. script:
  10. - npm run build:travis
  11. deploy:
  12. provider: pages
  13. local-dir: dist
  14. skip-cleanup: true
  15. github-token: $GITHUB_TOKEN
  16. keep-history: true
  17. on:
  18. branch: master