appveyor.yml 871 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Test against these versions of Node.js.
  2. environment:
  3. matrix:
  4. - nodejs_version: "0.10"
  5. - nodejs_version: "0.11"
  6. - nodejs_version: "0.12"
  7. # Allow failing jobs for bleeding-edge Node.js versions.
  8. matrix:
  9. allow_failures:
  10. - nodejs_version: "0.11"
  11. # Install scripts. (runs after repo cloning)
  12. install:
  13. # Get the latest stable version of Node 0.STABLE.latest
  14. - ps: Install-Product node $env:nodejs_version
  15. # Use npm v2
  16. - npm -g install npm@2
  17. - set PATH=%APPDATA%\npm;%PATH%
  18. - npm -v
  19. # Typical npm stuff.
  20. - npm install
  21. # Grunt-specific stuff.
  22. - npm install -g grunt-cli
  23. # Post-install test scripts.
  24. test_script:
  25. # Output useful info for debugging.
  26. - node --version
  27. - npm --version
  28. # Run test
  29. - grunt test
  30. # Don't actually build.
  31. build: off
  32. # Set build version format here instead of in the admin panel.
  33. version: "{build}"