From cbb499b0ce2cb6ae4d28071990b38715693c1bd2 Mon Sep 17 00:00:00 2001 From: Gleb Bahmutov Date: Tue, 26 May 2020 09:36:05 -0400 Subject: [PATCH] update test commands, separate install --- .circleci/config.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index dabd1b5..87b9266 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,11 +8,22 @@ jobs: - attach_workspace: at: ~/ - run: npm run semantic-release + workflows: build: jobs: + - cypress/install: + name: Install + executor: cypress/browsers-chrome78-ff70 + - cypress/run: + name: Electron tests + requires: + - Install executor: cypress/browsers-chrome78-ff70 + install-command: echo 'Nothing to install in this job' + no-workspace: true + - release: requires: - cypress/run