30 lines
619 B
YAML
30 lines
619 B
YAML
# appveyor file
|
|
# http://www.appveyor.com/docs/appveyor-yml
|
|
project_id: "5985958by5rhnh31"
|
|
|
|
# build version format
|
|
version: "{build}"
|
|
|
|
# fix lineendings in Windows
|
|
init:
|
|
- git config --global core.autocrlf input
|
|
|
|
# what combinations to test
|
|
environment:
|
|
matrix:
|
|
- nodejs_version: 0.10
|
|
|
|
# Get the latest stable version of Node 0.STABLE.latest
|
|
install:
|
|
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
|
|
- npm install -g grunt-cli
|
|
- npm install
|
|
|
|
build: off
|
|
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- ps: grunt test --no-color # PowerShell
|
|
- cmd: grunt test --no-color
|