.travis.yml 853 B

123456789101112131415161718192021222324252627
  1. # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  2. # ╔╦╗╦═╗╔═╗╦ ╦╦╔═╗ ┬ ┬┌┬┐┬ #
  3. # ║ ╠╦╝╠═╣╚╗╔╝║╚═╗ └┬┘││││ #
  4. # o ╩ ╩╚═╩ ╩ ╚╝ ╩╚═╝o ┴ ┴ ┴┴─┘ #
  5. # #
  6. # This file configures Travis CI. #
  7. # (i.e. how we run the tests... mainly) #
  8. # #
  9. # https://docs.travis-ci.com/user/customizing-the-build #
  10. # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  11. language: node_js
  12. node_js:
  13. - "4"
  14. - "6"
  15. - "8"
  16. - "10"
  17. - "node"
  18. branches:
  19. only:
  20. - master
  21. notifications:
  22. email:
  23. - ci@sailsjs.com