Skip to content

Commit

Permalink
ci: fix native workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiKilian committed Nov 24, 2024
1 parent 872c101 commit 1d71866
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_call:

jobs:
build_example:
build:
runs-on: ubuntu-latest

defaults:
Expand All @@ -18,7 +18,7 @@ jobs:
- name: Setup
uses: ./.github/actions/setup

- name: Setup JDK zulu 17
- name: Setup JDK Zulu 17
uses: actions/setup-java@v4
with:
distribution: "zulu"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
brew tap wix/brew
brew install applesimutils
- name: Build for detox
- name: Build for Detox
run: yarn detox build -c ios.sim.release

- name: Test with detox
- name: Test with Detox
run: yarn detox test --debug-synchronization 200 -c ios.sim.release
8 changes: 4 additions & 4 deletions .github/workflows/review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ jobs:
run: yarn prepack

android:
name: Android
name: Build React Native Android
needs: [lint, test, codegen, build]
uses: ./.github/actions/android/action.yml
uses: ./.github/workflows/build-android.yml

ios:
name: iOS
name: Build React Native iOS & Test with Detox
needs: [lint, test, codegen, build]
uses: ./.github/actions/ios/action.yml
uses: ./.github/workflows/build-ios.yml

publish:
name: Publish
Expand Down

0 comments on commit 1d71866

Please sign in to comment.