appveyor.yml 629 B

12345678910111213141516171819202122232425262728
  1. # Test against this version of Node.js
  2. environment:
  3. matrix:
  4. # node.js
  5. - nodejs_version: "0.10"
  6. - nodejs_version: "0.12"
  7. - nodejs_version: "4"
  8. - nodejs_version: "5"
  9. - nodejs_version: "6"
  10. # Install scripts. (runs after repo cloning)
  11. install:
  12. # Get the latest stable version of Node.js or io.js
  13. - ps: Install-Product node $env:nodejs_version
  14. # install modules
  15. - npm config set loglevel warn
  16. - npm install --silent
  17. # Post-install test scripts.
  18. test_script:
  19. # Output useful info for debugging.
  20. - node --version
  21. - npm --version
  22. # run tests
  23. - npm test
  24. # Don't actually build.
  25. build: off