appveyor.yml 303 B

123456789101112131415161718192021
  1. environment:
  2. matrix:
  3. - nodejs_version: 'Stable'
  4. init:
  5. git config --global core.autocrlf true
  6. install:
  7. - ps: Install-Product node $env:nodejs_version
  8. - npm install
  9. test_script:
  10. - node --version
  11. - npm --version
  12. - npm run test:win
  13. build: off
  14. clone_depth: 1
  15. matrix:
  16. fast_finish: true