appveyor.yml 537 B

123456789101112131415161718192021222324252627282930
  1. # appveyor file
  2. # http://www.appveyor.com/docs/appveyor-yml
  3. # branches to build
  4. branches:
  5. # whitelist
  6. only:
  7. - master
  8. # build version format
  9. version: "{build}"
  10. # what combinations to test
  11. environment:
  12. matrix:
  13. - nodejs_version: 5
  14. - nodejs_version: 4
  15. - nodejs_version: 0.12
  16. # Get the latest stable version of Node 0.STABLE.latest
  17. install:
  18. - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
  19. - npm install
  20. build: off
  21. test_script:
  22. - node --version
  23. - npm --version
  24. - cmd: npm test