From a648ed336ba272b8b18501b1c6ef30efb6d10647 Mon Sep 17 00:00:00 2001 From: bcoe Date: Fri, 6 Aug 2021 14:45:58 -0700 Subject: [PATCH] test: increase memory for coverage action --- .github/workflows/coverage-linux.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/coverage-linux.yml b/.github/workflows/coverage-linux.yml index 9cc17aa892d285..c8b740db801169 100644 --- a/.github/workflows/coverage-linux.yml +++ b/.github/workflows/coverage-linux.yml @@ -46,6 +46,8 @@ jobs: run: NODE_V8_COVERAGE=coverage/tmp make test-cov -j2 V=1 TEST_CI_ARGS="-p dots" || exit 0 - name: Report JS run: npx c8 report --check-coverage + env: + NODE_OPTIONS: --max-old-space-size=8192 - name: Report C++ run: cd out && gcovr --gcov-exclude='.*\b(deps|usr|out|obj|cctest|embedding)\b' -v -r Release/obj.target --xml -o ../coverage/coverage-cxx.xml --root=$(cd ../ && pwd) # Clean temporary output from gcov and c8, so that it's not uploaded: