12345678910111213141516171819202122232425262728293031323334353637383940414243 |
-
-
-
- init:
- - git config --global core.autocrlf input
-
-
- environment:
- matrix:
- - nodejs_version: "0.10"
- - nodejs_version: "0.8"
- - nodejs_version: "0.11"
-
-
- matrix:
- allow_failures:
- - nodejs_version: "0.11"
-
-
- install:
-
- - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
-
- - npm install
-
- - npm install -g grunt-cli
- - npm uninstall grunt
-
-
- test_script:
-
- - node --version
- - npm --version
-
-
- - ps: "npm test # PowerShell"
- - cmd: npm test
-
-
- build: off
-
-
- version: "{build}"
|