appveyor.yml 560 B

1234567891011121314151617181920212223242526272829
  1. # appveyor file
  2. # http://www.appveyor.com/docs/appveyor-yml
  3. # build version format
  4. version: "{build}"
  5. # fix lineendings in Windows
  6. init:
  7. - git config --global core.autocrlf input
  8. # what combinations to test
  9. environment:
  10. matrix:
  11. - nodejs_version: 0.10
  12. - nodejs_version: 0.12
  13. - nodejs_version: 4
  14. - nodejs_version: 6
  15. # get the latest stable version of Node 0.STABLE.latest
  16. install:
  17. - ps: Install-Product node $env:nodejs_version
  18. - npm install
  19. build: off
  20. test_script:
  21. - node --version
  22. - npm --version
  23. - cmd: npm test --no-color