You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

appveyor.yml 577B

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