File tree 1 file changed +40
-0
lines changed
1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ # http://www.appveyor.com/docs/appveyor-yml
2
+
3
+ # Fix line endings in Windows. (runs before repo cloning)
4
+ init :
5
+ - git config --global core.autocrlf true
6
+
7
+ # Test against these versions of Node.js.
8
+ environment :
9
+ matrix :
10
+ - nodejs_version : " 6"
11
+ - nodejs_version : " 7"
12
+
13
+ # Install scripts. (runs after repo cloning)
14
+ install :
15
+ - git rev-parse HEAD
16
+ # Get the latest stable version of Node 0.STABLE.latest
17
+ - ps : Install-Product node $env:nodejs_version
18
+ # Install PhantomJS
19
+ - cinst PhantomJS -y
20
+ # hide python so node-gyp won't try to build native extentions
21
+ - rename C:\Python27 Python27hidden
22
+ # Typical npm stuff.
23
+ - md C:\nc
24
+ - npm config set cache C:\nc
25
+ - npm version
26
+ - npm install --no-optional
27
+ - npm install -g bower
28
+ - bower install
29
+
30
+ # Post-install test scripts.
31
+ test_script :
32
+ # Output useful info for debugging.
33
+ - npm version
34
+ - cmd : npm test
35
+
36
+ # Don't actually build.
37
+ build : off
38
+
39
+ # Set build version format here instead of in the admin panel.
40
+ version : " {build}"
You can’t perform that action at this time.
0 commit comments