From 69a832f173a4782665d9fbe652f64b2bb38776a6 Mon Sep 17 00:00:00 2001 From: Alexander Paolini <30964205+alexanderpaolini@users.noreply.github.com> Date: Tue, 11 Aug 2026 23:36:20 -0700 Subject: [PATCH] fix(ci): add turbo max concurrency Lint CI step was getting killed due to max concurrency hit. This change resolves that by adding to the CI env. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b1b323a04..78455c0ad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -218,6 +218,9 @@ jobs: uses: ./tooling/github/setup - name: Lint + env: + # Keep concurrent ESLint processes within GitHub-hosted runner memory. + TURBO_CONCURRENCY: "4" run: pnpm lint && pnpm lint:ws format: