.travis.yml 291 B

123456789101112131415
  1. language: node_js
  2. env:
  3. - DEPS="grunt@~0.4.1 grunt-cli@~0.1.9"
  4. - DEPS="grunt@~0.3.17" REMOVE_DEPS="grunt-contrib-nodeunit"
  5. node_js:
  6. - "0.11"
  7. - "0.10"
  8. - "0.8"
  9. before_script:
  10. - ./test/install_deps.sh # Install grunt and grunt-cli
  11. script:
  12. - npm test
  13. notifications:
  14. email: false