appveyor.yml 242 B

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