appveyor.yml 278 B

1234567891011121314151617
  1. environment:
  2. nodejs_version: "6"
  3. platform:
  4. - x64
  5. - x86
  6. install:
  7. - ps: Install-Product node $env:nodejs_version
  8. - npm install
  9. test_script:
  10. - node -e "console.log(`${process.version} ${process.arch} ${process.platform}`)"
  11. - npm --version
  12. - npm test
  13. build: off