.appveyor.yml 412 B

123456789101112131415161718192021
  1. image: Visual Studio 2017
  2. environment:
  3. timeout: 10000
  4. matrix:
  5. # - nodejs_version: "8"
  6. # - nodejs_version: "10"
  7. - nodejs_version: "12"
  8. platform:
  9. # - x86
  10. - x64
  11. install:
  12. - ps: Install-Product node $env:nodejs_version $env:platform
  13. - npm install
  14. - node --version
  15. - npm --version
  16. - npm run fix-memory-limit
  17. build_script:
  18. - npm run lint
  19. - npm run build
  20. test_script:
  21. - npm run test