.travis.yml 271 B

123456789101112131415161718192021
  1. dist: bionic
  2. sudo: false
  3. language: node_js
  4. node_js: stable
  5. cache: false
  6. git:
  7. depth: 1
  8. script:
  9. - npm test
  10. - bash scripts/build.sh
  11. deploy:
  12. provider: script
  13. script: bash scripts/deploy.sh
  14. skip_cleanup: true
  15. on:
  16. repo: tldr-pages/tldr
  17. branch: master