From a708d9c86ceba3232b44727afeb06404862f65f6 Mon Sep 17 00:00:00 2001 From: Kelly Selden Date: Sat, 4 Mar 2017 08:59:56 -0800 Subject: [PATCH] add appveyor --- appveyor.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..3918823 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,28 @@ +environment: + matrix: + - nodejs_version: "6" + +branches: + only: + - master + +# Fix line endings in Windows. (runs before repo cloning) +init: + - git config --global core.autocrlf true + +# Install scripts. (runs after repo cloning) +install: + - ps: Install-Product node $env:nodejs_version $env:platform + - choco install yarn + +# Post-install test scripts. +test_script: + - node --version + - yarn start validate + +# http://help.appveyor.com/discussions/questions/1310-delete-cache +cache: + - node_modules -> package.json + +# Don't actually build. +build: off