From bfc1c05531e52e20be813eaf8ea16907b0e4c71b Mon Sep 17 00:00:00 2001 From: Prashantkumar Khatri Date: Sat, 13 Jun 2026 16:55:45 +0530 Subject: [PATCH] fix: removed lint check for web modules from github checks Signed-off-by: Prashantkumar Khatri --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71aedeb6..3a7d430e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -113,7 +113,8 @@ jobs: run: npm --prefix apps/web run build - name: Fail job if any check failed - if: steps.web_build.outcome == 'failure' + if: > + steps.web_build.outcome == 'failure' run: exit 1 mobile-ci: