appveyor.yml 530 B

12345678910111213141516171819202122232425262728293031
  1. init:
  2. # Get the latest stable version of Node.js
  3. - ps: Install-Product node $env:nodejs_version
  4. image:
  5. - Visual Studio 2017
  6. matrix:
  7. fast_finish: true
  8. environment:
  9. matrix:
  10. - nodejs_version: "4"
  11. - nodejs_version: "6"
  12. - nodejs_version: "7"
  13. - nodejs_version: "8"
  14. - nodejs_version: "9"
  15. install:
  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. - npm run test
  24. # Don't actually build.
  25. build: off