.travis.yml 322 B

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