From 60b1f509e6d1ded03d995c1fd03ba66f584c0e0d Mon Sep 17 00:00:00 2001 From: Will Chen Date: Thu, 14 Aug 2025 14:21:28 -0700 Subject: [PATCH] increase mem size to avoid OOM (#942) --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d8b3c6..ee24284 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,6 +85,8 @@ jobs: - name: Install Chromium browser for Playwright run: npx playwright install chromium --with-deps - name: Build + env: + NODE_OPTIONS: "--max-old-space-size=4096" run: npm run pre:e2e - name: Prep test server run: cd testing/fake-llm-server && npm install && npm run build && cd -