From 972540166db44d8e23b4f925ef81a9ae28a62684 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Tue, 21 Aug 2018 00:22:55 +0530 Subject: [PATCH] Add appveyor config --- appveyor.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..1f0a6ea --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,23 @@ +# Test against the latest version of this Node.js version +environment: + nodejs_version: "6" + nodejs_version: "8" + nodejs_version: "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 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 \ No newline at end of file