From ee35b5323688592c2703992c6585d44e5b673587 Mon Sep 17 00:00:00 2001 From: Kieran Osgood Date: Tue, 19 May 2026 16:15:59 +0100 Subject: [PATCH] fix: react native workflows run after swift/android changes --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79fcb6d6..8346fd6f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,11 +37,13 @@ jobs: filters: | android: - 'platforms/android/**' + - 'protocol/**' - '.github/workflows/android-test.yml' - '.github/workflows/android-license-headers.yml' - '.github/workflows/ci.yml' swift: - 'platforms/swift/**' + - 'protocol/**' - 'Package.swift' - 'Package.resolved' - '.github/workflows/swift-test-package.yml' @@ -51,6 +53,11 @@ jobs: - '.github/workflows/ci.yml' reactNative: - 'platforms/react-native/**' + - 'platforms/swift/**' + - 'platforms/android/**' + - 'protocol/**' + - 'Package.swift' + - 'Package.resolved' - '.github/workflows/rn-test.yml' - '.github/workflows/rn-test-android.yml' - '.github/workflows/rn-test-ios.yml'