appveyor.yml 341 B

12345678910111213141516171819202122232425
  1. version: "{build}"
  2. cache:
  3. - '%AppData%\npm-cache'
  4. build: off
  5. platform:
  6. - x64
  7. - x86
  8. environment:
  9. matrix:
  10. - nodejs_version: 6
  11. - nodejs_version: 8
  12. - nodejs_version: 9
  13. install:
  14. - ps: Install-Product node $env:nodejs_version $env:platform
  15. - npm install
  16. test_script:
  17. - node --version
  18. - npm --version
  19. - npm test