appveyor.yml 267 B

123456789101112131415
  1. environment:
  2. matrix:
  3. - nodejs_version: '8'
  4. - nodejs_version: '9'
  5. install:
  6. - ps: Install-Product node $env:nodejs_version
  7. - npm i npminstall && node_modules\.bin\npminstall
  8. test_script:
  9. - node --version
  10. - npm --version
  11. - npm run test
  12. build: off