.travis.yml 367 B

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