chore: restrict build worker CPUs to 1 on CI to prevent OOM
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 23s
CI - Lint, Typecheck & Test / quality-assurance (pull_request) Successful in 1m39s
Build & Deploy / 🧪 QA (push) Successful in 55s
Build & Deploy / 🏗️ Build (push) Successful in 2m5s
Build & Deploy / 🚀 Deploy (push) Failing after 56s
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 1s

This commit is contained in:
2026-06-13 09:16:20 +02:00
parent 1b2e0793d3
commit f4d65452a6

View File

@@ -26,6 +26,7 @@ const nextConfig = {
],
workerThreads: false,
memoryBasedWorkersCount: true,
cpus: process.env.CI === 'true' ? 1 : undefined,
serverActions: {
allowedOrigins: ["*.e-tib.com", "*.branch.e-tib.com", "localhost:3000", "etib.localhost"],
},