From 9ce6b4641d81d26886b5448d7bdec5868d0de446 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 19 May 2026 04:48:57 +0000 Subject: [PATCH] fix(ci): add codegen step to main branch web checks The provider stack PR (#31099) introduced imports from generated HeyAPI clients but only added the codegen step to pr-web.yaml. The main branch CI workflow was missing it, causing type check failures on every push to main. Co-Authored-By: ashlee@vellum.ai --- .github/workflows/ci-main-web.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci-main-web.yaml b/.github/workflows/ci-main-web.yaml index 5c9f87e6100..8e139204854 100644 --- a/.github/workflows/ci-main-web.yaml +++ b/.github/workflows/ci-main-web.yaml @@ -28,6 +28,9 @@ jobs: - name: Install dependencies run: bun install --frozen-lockfile + - name: Generate API clients + run: bun run openapi-ts + - name: Lint run: bun run lint