diff options
| -rw-r--r-- | appveyor_gui.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/appveyor_gui.yml b/appveyor_gui.yml new file mode 100644 index 0000000000..f603ab43ab --- /dev/null +++ b/appveyor_gui.yml @@ -0,0 +1,28 @@ +environment: + matrix: + - WORKSPACE: "@mullvad/components" + - WORKSPACE: "desktop" + +install: + - yarn --version + - node --version + - cd gui + - yarn install + +# This is the "test phase", tweak it as you see fit +test_script: + - yarn lint + - yarn workspace %WORKSPACE% test + +# Stops feature branches from triggering two builds (One for branch and one for PR) +skip_branch_with_pr: true + +notifications: + - provider: Email + on_build_success: false + on_build_failure: false + on_build_status_changed: false + +# We build in the test stage, so disable Appveyor's build stage. This prevents +# the "directory does not contain a project or solution file" error. +build: false |
