From 80b382e3208fcfee21fa7d5eda0f4f5258b185ba Mon Sep 17 00:00:00 2001 From: Kelly Selden Date: Sat, 4 Mar 2017 21:09:17 -0800 Subject: [PATCH] chore(build): add appveyor (#76) --- appveyor.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..0d6a74b --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,21 @@ +environment: + matrix: + - node_version: "6" + +branches: + only: + - master + +install: + - ps: Install-Product node $env:node_version + - yarn + +test_script: + - node --version + - npm test + +cache: + - node_modules + - "%LOCALAPPDATA%/Yarn" + +build: off