appveyor.yml 744 B

1234567891011121314151617181920212223242526
  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: "6"
  8. - nodejs_version: "8"
  9. platform:
  10. - x86
  11. - x64
  12. install:
  13. - ps: Install-Product node $env:nodejs_version
  14. - npm install
  15. test_script:
  16. # Output useful info for debugging.
  17. - node --version && npm --version
  18. # We test multiple Windows shells because of prior stdout buffering issues
  19. # filed against Grunt. https://github.com/joyent/node/issues/3584
  20. - ps: "npm test # PowerShell" # Pass comment to PS for easier debugging
  21. - cmd: npm test
  22. build: off
  23. matrix:
  24. fast_finish: true
  25. cache:
  26. - node_modules -> package.json # local npm modules