Version: 0.8.30.9.00.9.10.9.50.10.01.0.01.1.01.1.11.2.01.9.01.9.11.9.21.9.31.9.51.9.71.9.81.9.92.0.02.0.12.0.22.0.32.0.42.0.52.1.02.1.12.2.02.2.52.2.62.2.92.9.02.9.12.9.22.9.32.9.1002.9.1502.9.1512.9.1522.9.1532.9.2002.9.2012.9.2022.9.2032.10.02.11.02.11.12.11.22.11.32.11.42.12.02.14.02.16.02.16.22.16.42.16.62.18.02.19.02.20.02.21.02.22.02.23.02.24.02.25.02.26.02.27.02.28.02.29.02.30.02.31.02.32.02.33.02.34.02.35.02.36.02.37.02.38.02.39.02.40.02.41.02.42.02.43.02.44.02.45.02.46.02.47.02.48.02.49.02.50.02.51.02.52.02.53.02.54.02.55.02.56.02.57.02.58.02.59.02.60.02.61.02.62.02.63.02.64.02.65.02.66.02.67.02.68.02.69.02.70.02.71.02.72.02.73.02.74.02.75.02.76.02.77.02.78.02.79.02.80.02.81.02.82.02.83.02.84.02.85.02.86.02.87.02.88.02.88.2
# http://www.appveyor.com/docs/appveyor-yml
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.10"
- nodejs_version: "0.8"
- nodejs_version: "0.11"
# Allow failing jobs for bleeding-edge Node.js versions.
allow_failures:
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node 0.STABLE.latest
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
# Typical npm stuff.
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- ps: "npm test # PowerShell" # Pass comment to PS for easier debugging
- cmd: npm test
# Don't actually build.
build: off
# Set build version format here instead of in the admin panel.
version: "{build}"