aboutsummaryrefslogtreecommitdiff
path: root/node_modules/liftoff/appveyor.yml
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
commitabd94a7f5a50f43c797a11b53549ae48fff667c3 (patch)
treeab8ed457f65cdd72e13e0571d2975729428f1551 /node_modules/liftoff/appveyor.yml
parenta0247c6a3fd6a09a41a7e35a3441324c4dcb58be (diff)
downloadwallet-core-abd94a7f5a50f43c797a11b53549ae48fff667c3.tar.xz
add node_modules to address #4364
Diffstat (limited to 'node_modules/liftoff/appveyor.yml')
-rw-r--r--node_modules/liftoff/appveyor.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/node_modules/liftoff/appveyor.yml b/node_modules/liftoff/appveyor.yml
new file mode 100644
index 000000000..bcb6b74a8
--- /dev/null
+++ b/node_modules/liftoff/appveyor.yml
@@ -0,0 +1,29 @@
+# http://www.appveyor.com/docs/appveyor-yml
+# http://www.appveyor.com/docs/lang/nodejs-iojs
+
+environment:
+ matrix:
+ # node.js
+ - nodejs_version: "0.10"
+ - nodejs_version: "0.12"
+ - nodejs_version: "4"
+ - nodejs_version: "5"
+ - nodejs_version: "6"
+
+install:
+ - IF %nodejs_version% EQU 0.10 npm -g install npm@2
+ - IF %nodejs_version% EQU 0.10 set PATH=%APPDATA%\npm;%PATH%
+ - ps: Install-Product node $env:nodejs_version
+ - npm install
+
+test_script:
+ - node --version
+ - npm --version
+ # power shell
+ - ps: "npm test"
+ # standard command line
+ - cmd: npm test
+
+build: off
+
+version: "{build}"