.travis.yml 323 B

12345678910111213141516171819202122232425
  1. language:
  2. - ruby
  3. - node_js
  4. install:
  5. - bundle install
  6. - npm install
  7. script:
  8. - npm run build
  9. deploy:
  10. - provider: pages
  11. skip-cleanup: true
  12. github-token: $GITHUB_TOKEN
  13. keep-history: true
  14. local-dir: _site
  15. on:
  16. branch: master
  17. tags: true
  18. # blocklist
  19. branches:
  20. except:
  21. - gh-pages