From abc2bb8a4f749704f2daf376c0d392030f030caf Mon Sep 17 00:00:00 2001 From: TC Date: Sun, 28 Apr 2019 12:31:55 +0200 Subject: [PATCH] Add Appveyor config --- appveyor.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..2a626535 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,20 @@ +image: Visual Studio 2017 + +platform: + - x64 + +cache: + - node_modules + - '%USERPROFILE%\.electron' + +init: + - git config --global core.autocrlf input + +install: + - ps: Install-Product node 8 x64 + - npm install + +build_script: + - npm run build + +test: off