From 74552ccedd008d01565a67837b8d3c7341a4942f Mon Sep 17 00:00:00 2001 From: Quentin Goinaud Date: Thu, 28 Jun 2018 11:08:02 +0200 Subject: [PATCH] add appveyor --- appveyor.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..cb4e9f6 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,29 @@ +version: 0.1.{build} + +# branches: +# only: +# - master + +image: Visual Studio 2017 +platform: + - x64 + +cache: + - node_modules + - '%APPDATA%\npm-cache' + - '%USERPROFILE%\.electron' + - '%USERPROFILE%\AppData\Local\Yarn\cache' + +init: + - git config --global core.autocrlf input + +install: + - ps: Install-Product node 8 x64 + - git reset --hard HEAD + - yarn + - node --version + +build_script: + - yarn run dist + +test: off