From ec4de41e31359b4b0f549ea29448251896f44c9c Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Wed, 1 Apr 2026 01:06:03 -0700 Subject: [PATCH] CI: reduce build memory to 2GB to prevent OOM on shared host --- .gitea/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 1771c82..a058315 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -22,8 +22,6 @@ jobs: - name: Install dependencies run: npm ci --legacy-peer-deps --ignore-scripts - env: - NODE_OPTIONS: "--max-old-space-size=4096" - name: Type check run: npx tsc --noEmit @@ -37,7 +35,7 @@ jobs: - name: Build run: npx vite build env: - NODE_OPTIONS: "--max-old-space-size=4096" + NODE_OPTIONS: "--max-old-space-size=2048" deploy: if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}