fix: Update mobile CI workflow for improved error handling and efficiency

This commit is contained in:
Achintha Isuru
2026-02-20 01:55:16 -05:00
parent 50309bfb39
commit c3f8a4768a

View File

@@ -162,7 +162,7 @@ jobs:
if [[ -n "$file" && "$file" == *.dart ]]; then if [[ -n "$file" && "$file" == *.dart ]]; then
echo "📝 Analyzing: $file" 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 HAS_ERRORS=true
FAILED_FILES+=("$file") FAILED_FILES+=("$file")
fi fi