appveyor.yml 653 B

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