File tree Expand file tree Collapse file tree 2 files changed +30
-20
lines changed Expand file tree Collapse file tree 2 files changed +30
-20
lines changed Original file line number Diff line number Diff line change 1
1
sudo : false
2
2
language : node_js
3
3
node_js :
4
- - ' 5'
5
- - ' 4'
6
- - ' 0.10'
4
+ - " 0.10"
5
+ - " 0.12"
6
+ - " 4"
7
+ - " 5"
8
+ - " iojs"
9
+ before_install :
10
+ - npm install -g npm
11
+ before_script :
12
+ - npm install -g grunt-cli
13
+ matrix :
14
+ fast_finish : true
Original file line number Diff line number Diff line change 1
- # AppVeyor file
2
- # http://www.appveyor.com/docs/appveyor-yml
3
-
4
- version : " {build}"
5
-
6
- clone_depth : 10
7
-
1
+ # Fix line endings on Windows
2
+ init :
3
+ - git config --global core.autocrlf true
4
+ # What combinations to test
8
5
environment :
9
6
matrix :
10
- - nodejs_version : " 5"
11
- - nodejs_version : " 4"
12
7
- nodejs_version : " 0.10"
13
-
8
+ - nodejs_version : " 0.12"
9
+ - nodejs_version : " 4"
10
+ - nodejs_version : " 5"
11
+ platform :
12
+ - x86
13
+ - x64
14
14
install :
15
15
- ps : Install-Product node $env:nodejs_version
16
+ - npm install -g npm
17
+ - npm install -g grunt-cli
16
18
- npm install
17
-
18
- build : off
19
-
20
19
test_script :
20
+ # Output useful info for debugging.
21
21
- node --version && npm --version
22
- - npm test
23
-
22
+ # We test multiple Windows shells because of prior stdout buffering issues
23
+ # filed against Grunt. https://github.com/joyent/node/issues/3584
24
+ - ps : " npm test # PowerShell" # Pass comment to PS for easier debugging
25
+ - cmd : npm test
26
+ build : off
24
27
matrix :
25
28
fast_finish : true
26
-
27
29
cache :
28
- - ' node_modules -> package.json' # local npm modules
30
+ - node_modules -> package.json
You can’t perform that action at this time.
0 commit comments