From 92dd55050d94d460859ff3d2b3713cc4b8d9bbe7 Mon Sep 17 00:00:00 2001 From: Robert Muehsig Date: Mon, 16 Oct 2017 22:43:38 +0200 Subject: [PATCH] Create appveyor.yml --- appveyor.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..41ba02b --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,16 @@ +# Test against the latest version of this Node.js version +environment: + nodejs_version: "6" + +# 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