From 7176f5249208fd4a49fe798cecfa75599dd7e480 Mon Sep 17 00:00:00 2001 From: abhi1992002 Date: Thu, 22 Jan 2026 12:53:38 +0530 Subject: [PATCH] chore: update CI workflow to generate API client before running tests - Added a step to generate the API client using `pnpm generate:api:force` in the CI workflow before executing integration tests. --- .github/workflows/platform-frontend-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/platform-frontend-ci.yml b/.github/workflows/platform-frontend-ci.yml index 51987cde7c..c751699c12 100644 --- a/.github/workflows/platform-frontend-ci.yml +++ b/.github/workflows/platform-frontend-ci.yml @@ -289,5 +289,8 @@ jobs: - name: Install dependencies run: pnpm install --frozen-lockfile + - name: Generate API client + run: pnpm generate:api:force + - name: Run Integration Tests run: pnpm test:unit