From 7944ca29faaa2272512340564c4df6d6bd7cf57b Mon Sep 17 00:00:00 2001 From: Charles Bochet Date: Mon, 23 Feb 2026 12:05:53 +0100 Subject: [PATCH] Fix CI (#18168) Fix 2 issues on CI: - website still using ubuntu-latest - linter that cannot use more than 2GB --- .github/workflows/ci-front.yaml | 1 + .github/workflows/ci-website.yaml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-front.yaml b/.github/workflows/ci-front.yaml index 563567a95f6..6db24ebe916 100644 --- a/.github/workflows/ci-front.yaml +++ b/.github/workflows/ci-front.yaml @@ -171,6 +171,7 @@ jobs: timeout-minutes: 30 runs-on: depot-ubuntu-24.04 env: + NODE_OPTIONS: '--max-old-space-size=4096' TASK_CACHE_KEY: front-task-${{ matrix.task }} strategy: matrix: diff --git a/.github/workflows/ci-website.yaml b/.github/workflows/ci-website.yaml index 4ca2a20bb18..77213ba7d48 100644 --- a/.github/workflows/ci-website.yaml +++ b/.github/workflows/ci-website.yaml @@ -23,7 +23,7 @@ jobs: needs: changed-files-check if: needs.changed-files-check.outputs.any_changed == 'true' timeout-minutes: 10 - runs-on: ubuntu-latest + runs-on: depot-ubuntu-24.04 services: postgres: image: twentycrm/twenty-postgres-spilo @@ -65,7 +65,7 @@ jobs: ci-website-status-check: if: always() && !cancelled() timeout-minutes: 5 - runs-on: ubuntu-latest + runs-on: depot-ubuntu-24.04 needs: [changed-files-check, website-build] steps: - name: Fail job if any needs failed