appveyor.yml 585 B

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