123456789101112131415161718192021222324252627282930313233 |
- environment:
- matrix:
- - nodejs_version: "0.10"
- - nodejs_version: "0.12"
- - nodejs_version: "4"
- - nodejs_version: "6"
- install:
-
- - ps: Install-Product node $env:nodejs_version
-
- - npm -g install npm@2
- - set PATH=%APPDATA%\npm;%PATH%
- - npm -v
-
- - npm install
-
- - npm install -g grunt-cli
- test_script:
-
- - node --version && npm --version
-
- - grunt test
- build: off
- version: "{build}"
|