appveyor.yml 587 B

123456789101112131415161718192021222324252627
  1. environment:
  2. matrix:
  3. - nodejs_version: "10"
  4. - nodejs_version: "9"
  5. - nodejs_version: "8"
  6. - nodejs_version: "6"
  7. - nodejs_version: "4"
  8. - nodejs_version: "0.12"
  9. - nodejs_version: "0.10"
  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 install
  16. # Post-install test scripts.
  17. test_script:
  18. # Output useful info for debugging.
  19. - node --version
  20. - npm --version
  21. # run tests
  22. - npm test
  23. # Don't actually build.
  24. build: off