.travis.yml 321 B

123456789101112131415161718192021
  1. language: node_js
  2. node_js:
  3. - "14"
  4. branches:
  5. only:
  6. - main
  7. cache:
  8. directories:
  9. - node_modules
  10. script:
  11. - npm run test
  12. - npm run build
  13. deploy:
  14. provider: pages
  15. skip_cleanup: true
  16. local_dir: out
  17. token: $GITHUB_TOKEN
  18. target_branch: gh-pages
  19. keep_history: true
  20. on:
  21. branch: main