From 1417e003bd74d63064def52412d58b84bcdfdf6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cedric=20/=20ViaD=C3=A9zo1er?= Date: Thu, 27 Aug 2026 20:58:28 +0000 Subject: [PATCH] fix(ci): fix ci BRAINTRUST_API_KEY_CI not passed in turbo.json (#98) --- .github/workflows/ci.yml | 2 +- turbo.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 682c0db..cae00ab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,7 +88,7 @@ jobs: - name: Run tests env: - BRAINTRUST_SERVICE_TOKEN: ${{ secrets.BRAINTRUST_SERVICE_TOKEN }} + BRAINTRUST_API_KEY_CI: ${{ secrets.BRAINTRUST_API_KEY_CI }} run: pnpm test lint: diff --git a/turbo.json b/turbo.json index 4a05c62..d7682d4 100644 --- a/turbo.json +++ b/turbo.json @@ -27,7 +27,7 @@ "test": { "dependsOn": ["^build"], "outputs": [], - "passThroughEnv": ["BRAINTRUST_SERVICE_TOKEN"] + "passThroughEnv": ["BRAINTRUST_API_KEY_CI"] }, "lint": { "outputs": []