From af78b38ea2aff26adbb6b075092972bc97569556 Mon Sep 17 00:00:00 2001 From: Achintha Isuru Date: Fri, 20 Feb 2026 02:01:29 -0500 Subject: [PATCH] fix: Add pipefail option to lint step for improved error handling --- .github/workflows/mobile-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/mobile-ci.yml b/.github/workflows/mobile-ci.yml index 381c76a1..4a6e43ee 100644 --- a/.github/workflows/mobile-ci.yml +++ b/.github/workflows/mobile-ci.yml @@ -142,6 +142,8 @@ jobs: - name: 🔍 Lint changed Dart files run: | + set -o pipefail + # Get the list of changed files CHANGED_FILES="${{ needs.detect-changes.outputs.changed-files }}"