feat(): add build.yml step #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: React Native Build | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build-android: | |
runs-on: macos-13 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 22 | |
- name: Install dependencies | |
run: | | |
npm install | |
- name: Set up Java JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: zulu | |
java-version: 17 | |
- name: Install Android SDK | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
components: 'platform-tools,build-tools;30.0.3,android-30' | |
script: ./gradlew build | |
- name: Build Android app | |
run: | | |
cd android | |
./gradlew assembleRelease # Assemble the Android release | |
build-ios: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 22 | |
- name: Install dependencies | |
run: | | |
npm install | |
npx pod-install | |
- name: Build iOS app | |
run: | | |
cd ios | |
xcodebuild \ | |
-workspace YourApp.xcworkspace \ | |
-scheme YourApp \ | |
-configuration Release \ | |
-sdk iphoneos \ | |
-derivedDataPath build/ \ | |
clean build |