appveyor.yml 468 B

123456789101112131415161718192021
  1. # Test against the latest version of this Node.js version
  2. environment:
  3. nodejs_version: "8"
  4. # Install scripts. (runs after repo cloning)
  5. install:
  6. # Get the latest stable version of Node.js or io.js
  7. - ps: Install-Product node $env:nodejs_version
  8. # install modules
  9. - npm install
  10. # Post-install test scripts.
  11. test_script:
  12. # Output useful info for debugging.
  13. - node --version
  14. - npm --version
  15. # run tests
  16. - npm test
  17. # Don't actually build.
  18. build: off