appveyor.yml 645 B

12345678910111213141516171819202122232425262728293031
  1. # http://www.appveyor.com/docs/appveyor-yml
  2. # version format
  3. version: 8.9.3.{build}
  4. # Test against these versions of Io.js and Node.js.
  5. environment:
  6. matrix:
  7. # node.js
  8. - nodejs_version: "6"
  9. - nodejs_version: "7"
  10. - nodejs_version: "8"
  11. # Install scripts. (runs after repo cloning)
  12. install:
  13. # Get the latest stable version of Node 0.STABLE.latest
  14. - ps: Install-Product node $env:nodejs_version
  15. - npm -g install npm
  16. - npm install
  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 run test-windows
  24. # Don't actually build.
  25. build: off