appveyor.yml 378 B

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