appveyor.yml 411 B

12345678910111213141516171819202122
  1. environment:
  2. matrix:
  3. - nodejs_version: '8'
  4. - nodejs_version: '6'
  5. - nodejs_version: '4'
  6. install:
  7. - ps: Install-Product node $env:nodejs_version
  8. - set CI=true
  9. - npm -g install npm@latest
  10. - set PATH=%APPDATA%\npm;%PATH%
  11. - npm install
  12. matrix:
  13. fast_finish: true
  14. build: off
  15. version: '{build}'
  16. shallow_clone: true
  17. clone_depth: 1
  18. test_script:
  19. - node --version
  20. - npm --version
  21. - npm test