appveyor.yml 760 B

12345678910111213141516171819202122232425262728
  1. # Fix line endings on Windows
  2. init:
  3. - git config --global core.autocrlf true
  4. # What combinations to test
  5. environment:
  6. matrix:
  7. - nodejs_version: "0.10"
  8. - nodejs_version: "0.12"
  9. - nodejs_version: "4"
  10. platform:
  11. - x86
  12. - x64
  13. install:
  14. - ps: Install-Product node $env:nodejs_version
  15. - npm install -g npm
  16. - npm install
  17. test_script:
  18. # Output useful info for debugging.
  19. - node --version && npm --version
  20. # We test multiple Windows shells because of prior stdout buffering issues
  21. # filed against Grunt. https://github.com/joyent/node/issues/3584
  22. - ps: "npm test # PowerShell" # Pass comment to PS for easier debugging
  23. - cmd: npm test
  24. build: off
  25. matrix:
  26. fast_finish: true
  27. cache:
  28. - node_modules -> package.json # local npm modules