appveyor.yml 674 B

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