From c3f8a4768a6af75f3337b88fac64eb4210c89740 Mon Sep 17 00:00:00 2001 From: Achintha Isuru Date: Fri, 20 Feb 2026 01:55:16 -0500 Subject: [PATCH] fix: Update mobile CI workflow for improved error handling and efficiency --- .github/workflows/mobile-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mobile-ci.yml b/.github/workflows/mobile-ci.yml index 46944d74..381c76a1 100644 --- a/.github/workflows/mobile-ci.yml +++ b/.github/workflows/mobile-ci.yml @@ -89,7 +89,7 @@ jobs: - name: 🔨 Run compilation check run: | set -o pipefail - + echo "🏗️ Building client app for Android (dev mode)..." if ! make mobile-client-build PLATFORM=apk MODE=debug 2>&1 | tee client_build.txt; then echo "" @@ -162,7 +162,7 @@ jobs: if [[ -n "$file" && "$file" == *.dart ]]; then echo "📝 Analyzing: $file" - if ! dart analyze "$file" --no-fatal-infos 2>&1 | tee -a lint_output.txt; then + if ! dart analyze "$file" 2>&1 | tee -a lint_output.txt; then HAS_ERRORS=true FAILED_FILES+=("$file") fi