Build with AppVeyor on windows
authorRichard van Velzen <rvanvelzen1@gmail.com>
Sun, 17 Jul 2016 16:17:33 +0000 (18:17 +0200)
committerRichard van Velzen <rvanvelzen1@gmail.com>
Sun, 17 Jul 2016 18:00:41 +0000 (20:00 +0200)
appveyor.yml [new file with mode: 0644]

diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644 (file)
index 0000000..4d8c2e2
--- /dev/null
@@ -0,0 +1,24 @@
+environment:
+  matrix:
+  - nodejs_version: "0.10"
+  - nodejs_version: "0.12"
+  - nodejs_version: "4.0"
+  - nodejs_version: "6.0"
+
+matrix:
+  fast_finish: true
+
+platform:
+  - x86
+  - x64
+
+install:
+  - ps: Install-Product node $env:nodejs_version $env:platform
+  - npm install
+
+test_script:
+  - node --version
+  - npm --version
+  - npm test
+
+build: off