.appveyor.yml 347 B

1234567891011121314151617
  1. image: Visual Studio 2017
  2. environment:
  3. matrix:
  4. - nodejs_version: "6"
  5. - nodejs_version: "7"
  6. - nodejs_version: "8"
  7. - nodejs_version: "9"
  8. install:
  9. - ps: Install-Product node $env:nodejs_version
  10. - npm install
  11. - node --version
  12. - npm --version
  13. build_script:
  14. - npm run lint
  15. - npm run build
  16. test_script:
  17. - npm run test