From d60bfecb88db6564f37196d24b0a9c45df0e8816 Mon Sep 17 00:00:00 2001 From: Martin Poelstra Date: Mon, 16 Oct 2017 11:26:14 +0200 Subject: [PATCH] appveyor: Add support for automatic Windows CI tests. --- appveyor.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..758d8683 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,22 @@ +environment: + nodejs_version: "8.4" + +# 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 + # Upgrade npm + - npm install -g npm + # 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