appveyor.yml 500 B

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