From 73c050511b5dd62ac96b00534d1e9915e2490dff Mon Sep 17 00:00:00 2001 From: Alexandru Dima Date: Fri, 11 Dec 2020 22:51:33 +0100 Subject: [PATCH] Avoid respawning --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 78cfcd4210d..bf41e5b5bb5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -206,7 +206,7 @@ jobs: run: yarn --frozen-lockfile - name: Compile and Download - run: yarn compile & yarn electron x64 & node ./node_modules/playwright/install.js & yarn download-builtin-extensions; echo "Compile and Download finished". + run: node --max_old_space_size=4095 ./node_modules/gulp/bin/gulp.js compile & yarn electron x64 & node ./node_modules/playwright/install.js & yarn download-builtin-extensions; echo "Compile and Download finished". - name: Run Unit Tests (Electron) run: DISPLAY=:10 ./scripts/test.sh