From 9425f63e51931d6fe7485dffc1c35a2e3ee855ef Mon Sep 17 00:00:00 2001 From: Utkarsh-Patel-13 Date: Thu, 24 Jul 2025 16:02:17 -0700 Subject: [PATCH] Fixed frontend tag in code quality workflwo --- .github/workflows/code-quality.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 7695369..3adfe52 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -199,7 +199,7 @@ jobs: quality-gate: name: Quality Gate runs-on: ubuntu-latest - needs: [file-quality, security-scan, python-backend, frontend-quality] + needs: [file-quality, security-scan, python-backend] if: always() steps: @@ -207,8 +207,7 @@ jobs: run: | if [[ "${{ needs.file-quality.result }}" == "failure" || "${{ needs.security-scan.result }}" == "failure" || - "${{ needs.python-backend.result }}" == "failure" || - "${{ needs.frontend-quality.result }}" == "failure" ]]; then + "${{ needs.python-backend.result }}" == "failure" ]]; then echo "❌ Code quality checks failed" exit 1 else