appveyor.yml 600 B

1234567891011121314151617181920212223242526272829
  1. environment:
  2. global:
  3. npm_registry: https://registry.npmjs.com
  4. matrix:
  5. - nodejs_version: "9"
  6. - nodejs_version: "8"
  7. - nodejs_version: "6"
  8. - nodejs_version: "4"
  9. - nodejs_version: "0.12"
  10. # Install scripts. (runs after repo cloning)
  11. install:
  12. # Get the latest stable version of Node.js or io.js
  13. - ps: Install-Product node $env:nodejs_version
  14. # install modules
  15. - npm i
  16. # Post-install test scripts.
  17. test_script:
  18. # Output useful info for debugging.
  19. - node --version
  20. - npm --version
  21. # run tests
  22. - set DEBUG=wt
  23. - npm run ci
  24. # Don't actually build.
  25. build: off