summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2015-03-10 14:52:09 +0100
committerSamy Pessé <samypesse@gmail.com>2015-03-10 14:52:09 +0100
commit24fc36deb19c7e15662642f2f9eb32724f87cd34 (patch)
tree143b237ba3c3baff94c71006c7e97f7ead682d5f
parent2f44b61cec5363ca9abc09984f7d19c334751d53 (diff)
downloadgitbook-24fc36deb19c7e15662642f2f9eb32724f87cd34.zip
gitbook-24fc36deb19c7e15662642f2f9eb32724f87cd34.tar.gz
gitbook-24fc36deb19c7e15662642f2f9eb32724f87cd34.tar.bz2
Add appveyor.yml for windows testing
Related to #639
-rw-r--r--appveyor.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..2867396
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,23 @@
+# Test against this version of Node.js
+environment:
+ nodejs_version: "0.10"
+
+# Install scripts. (runs after repo cloning)
+install:
+ # Get the latest stable version of Node.js or io.js
+ - ps: Install-Product node $env:nodejs_version
+ # install svgexport
+ - npm install svgexport -g
+ # install modules
+ - npm install
+
+# Post-install test scripts.
+test_script:
+ # Output useful info for debugging.
+ - node --version
+ - npm --version
+ # run tests
+ - npm test
+
+# Don't actually build.
+build: off