appveyor.yml 490 B

12345678910111213141516171819202122232425262728
  1. version: "{build}"
  2. environment:
  3. matrix:
  4. - nodejs_version: "8"
  5. - nodejs_version: "10"
  6. matrix:
  7. fast_finish: true
  8. install:
  9. # Install Node.js
  10. - ps: Install-Product node $env:nodejs_version
  11. # Output our current versions for debugging
  12. - node --version
  13. - npm --version
  14. # Install our package dependencies
  15. - appveyor-retry npm install
  16. # Install our current directory as a dependency of itself
  17. - npm run init:windows
  18. test_script:
  19. - npm run appveyor
  20. build: off