From 2a71bf7ba949a87294746ab6251d9b5ffe928655 Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Fri, 10 Jun 2022 15:39:34 +0300 Subject: [PATCH] Increase max memory usage when running tests Signed-off-by: Alex Andreev --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a71fc42771..e54751043e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -63,6 +63,10 @@ jobs: - run: make test name: Run tests + shell: bash + env: + NODE_OPTIONS: "--max-old-space-size=4096" + if: runner.os == 'Linux' - run: make test-extensions name: Run In-tree Extension tests