From dd7f3e1fe9ad0c1d812a433a5f86042c6b1ffca3 Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Thu, 16 Apr 2026 05:49:47 +0530 Subject: [PATCH] fix: correct environment file paths and parallelize frontend dependency installation in CI workflow --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1f70b03..bf57381 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: - name: Code Quality run: | - cp ../.env.example ./ .env + cp ../.env.example ../.env bun run check - name: Type Check & Build @@ -89,7 +89,7 @@ jobs: - name: Setup Environment run: | - cp ../.env.example .env + cp ../.env.example ../.env uv sync - name: Lint & Test @@ -132,8 +132,8 @@ jobs: - name: Install Dependencies run: | - cd frontend && bun install - cd frontend && bun x playwright install --with-deps + (cd frontend && bun install) & + (cd frontend && bun x playwright install --with-deps) - name: Run E2E run: |