From 3bad41ff3c3b84675bd536a71d7dd97e4e95f865 Mon Sep 17 00:00:00 2001 From: Alexandru Dima Date: Fri, 11 Dec 2020 22:36:44 +0100 Subject: [PATCH] Attempt to run things in parallel --- .github/workflows/ci.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9320dcdb0e..bd62f9fd12c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -205,17 +205,13 @@ jobs: PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 run: yarn --frozen-lockfile - - name: Download Electron - run: yarn electron x64 - - - name: Download Playwright - run: node ./node_modules/playwright/install.js - - - name: Compile Sources - run: yarn compile - - - name: Download Built-in Extensions - run: yarn download-builtin-extensions + - name: Compile & Download + run: | + yarn compile & + yarn electron x64 & + node ./node_modules/playwright/install.js & + yarn download-builtin-extensions + wait - name: Run Unit Tests (Electron) run: DISPLAY=:10 ./scripts/test.sh