From da90a029246fc9957c3ffee96fd2b9a541e4b415 Mon Sep 17 00:00:00 2001 From: BJR Matos Date: Sat, 19 Nov 2016 21:17:04 -0500 Subject: [PATCH] [add] appveyor config --- appveyor.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..6118877 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,26 @@ + +# Test against this version of Node.js +environment: + matrix: + # node.js + - nodejs_version: "0.10" + - nodejs_version: "4.6" + - nodejs_version: "6.9" + +# 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 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