fix(ci): increase node heap limits during intense compile/lint checks to circumvent runner OOM crashes
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 6s
Build & Deploy / 🧪 QA (push) Successful in 5m56s
Build & Deploy / 🏗️ Build (push) Failing after 20s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 1s

This commit is contained in:
2026-03-01 09:35:24 +01:00
parent 07928a182f
commit ad50929bf3

View File

@@ -168,9 +168,13 @@ jobs:
run: pnpm install --no-frozen-lockfile
- name: 🧪 QA Checks
if: github.event.inputs.skip_checks != 'true'
env:
NODE_OPTIONS: "--max_old_space_size=4096"
run: npx turbo run lint typecheck test
- name: 🏗️ Build Test
if: github.event.inputs.skip_checks != 'true'
env:
NODE_OPTIONS: "--max_old_space_size=4096"
run: pnpm build
# ──────────────────────────────────────────────────────────────────────────────