Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,16 @@ jobs:
- run: npm test
test-ios:
if: github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'Apple 🍎')
name: Test app (iOS)
name: Test app (iOS${{ matrix.rn-deps-prebuilds && ' / RN deps prebuilds' || '' }}${{ matrix.rn-core-prebuilds && ' / RN core prebuilds' || '' }})
runs-on: macos-latest
strategy:
matrix:
rn-deps-prebuilds:
- true
- false
rn-core-prebuilds:
- true
- false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -100,6 +108,11 @@ jobs:
FERRIC_TARGETS: aarch64-apple-ios-sim
- run: npm run pod-install
working-directory: apps/test-app
env:
# Optionally enable experimental prebuilds
# https://reactnative.dev/blog/2025/08/12/react-native-0.81#experimental-precompiled-ios-builds
RCT_USE_PREBUILT_RNCORE: ${{ matrix.rn-core-prebuilds && '1' || '0' }}
RCT_USE_RN_DEP: ${{ matrix.rn-deps-prebuilds && '1' || '0' }}
- name: Run tests (iOS)
run: npm run test:ios:allTests
# TODO: Enable release mode when it works
Expand Down
Loading