.appveyor.yml 436 B

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