Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

.travis.yml 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. language: node_js
  2. node_js:
  3. - "5.5"
  4. - "5.4"
  5. - "5.3"
  6. - "5.2"
  7. - "5.1"
  8. - "5.0"
  9. - "4.2"
  10. - "4.1"
  11. - "4.0"
  12. - "iojs-v3.3"
  13. - "iojs-v3.2"
  14. - "iojs-v3.1"
  15. - "iojs-v3.0"
  16. - "iojs-v2.5"
  17. - "iojs-v2.4"
  18. - "iojs-v2.3"
  19. - "iojs-v2.2"
  20. - "iojs-v2.1"
  21. - "iojs-v2.0"
  22. - "iojs-v1.8"
  23. - "iojs-v1.7"
  24. - "iojs-v1.6"
  25. - "iojs-v1.5"
  26. - "iojs-v1.4"
  27. - "iojs-v1.3"
  28. - "iojs-v1.2"
  29. - "iojs-v1.1"
  30. - "iojs-v1.0"
  31. - "0.12"
  32. - "0.11"
  33. - "0.10"
  34. - "0.9"
  35. - "0.8"
  36. - "0.6"
  37. - "0.4"
  38. before_install:
  39. - 'if [ "${TRAVIS_NODE_VERSION}" != "0.9" ]; then case "$(npm --version)" in 1.*) npm install -g npm@1.4.28 ;; 2.*) npm install -g npm@2 ;; esac ; fi'
  40. - 'if [ "${TRAVIS_NODE_VERSION}" != "0.6" ] && [ "${TRAVIS_NODE_VERSION}" != "0.9" ]; then npm install -g npm; fi'
  41. script:
  42. - 'if [ "${TRAVIS_NODE_VERSION}" != "4.2" ]; then npm run tests-only ; else npm test ; fi'
  43. sudo: false
  44. matrix:
  45. fast_finish: true
  46. allow_failures:
  47. - node_js: "5.4"
  48. - node_js: "5.3"
  49. - node_js: "5.2"
  50. - node_js: "5.1"
  51. - node_js: "5.0"
  52. - node_js: "4.1"
  53. - node_js: "4.0"
  54. - node_js: "iojs-v3.2"
  55. - node_js: "iojs-v3.1"
  56. - node_js: "iojs-v3.0"
  57. - node_js: "iojs-v2.4"
  58. - node_js: "iojs-v2.3"
  59. - node_js: "iojs-v2.2"
  60. - node_js: "iojs-v2.1"
  61. - node_js: "iojs-v2.0"
  62. - node_js: "iojs-v1.7"
  63. - node_js: "iojs-v1.6"
  64. - node_js: "iojs-v1.5"
  65. - node_js: "iojs-v1.4"
  66. - node_js: "iojs-v1.3"
  67. - node_js: "iojs-v1.2"
  68. - node_js: "iojs-v1.1"
  69. - node_js: "iojs-v1.0"
  70. - node_js: "0.11"
  71. - node_js: "0.9"
  72. - node_js: "0.6"
  73. - node_js: "0.4"