From 72d9f62f396f9d4900592c1b252f78f13df3932c Mon Sep 17 00:00:00 2001 From: Maurice Date: Mon, 22 Jun 2026 22:22:41 +0200 Subject: [PATCH] ci: raise Node heap for the client coverage run to fix OOM (#1258) --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 20f1864b..1e61f41e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -126,6 +126,10 @@ jobs: run: cd client && npm run lint:pages - name: Run tests + env: + # Vitest + v8 coverage across 150+ files exceeds Node's default ~4 GB + # heap and OOM'd; give it headroom on the 16 GB runner. + NODE_OPTIONS: --max-old-space-size=6144 run: cd client && npm run test:coverage - name: Upload coverage