From acc9770cd41dfc2b36e1e07e960fd6803bbe5aa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Wed, 8 Apr 2026 14:56:26 +0200 Subject: [PATCH] update e2e workflow: increase container resources (CPU, memory) and adjust Node.js memory limit --- .github/workflows/e2e-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 76fa5b638a..a4d0ba4541 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -18,7 +18,7 @@ concurrency: cancel-in-progress: true env: - NODE_OPTIONS: "--max_old_space_size=12288" + NODE_OPTIONS: "--max_old_space_size=16384" jobs: test: @@ -27,7 +27,7 @@ jobs: timeout-minutes: 60 container: image: node:22-bookworm - options: --cpus 4 --memory 12g --security-opt seccomp=unconfined + options: --cpus 6 --memory 16g --security-opt seccomp=unconfined strategy: fail-fast: false