Skip to content

feat(): add build.yml step #7

feat(): add build.yml step

feat(): add build.yml step #7

Workflow file for this run

name: React Native Build
on:
pull_request:
branches:
- master
jobs:
build-android:
runs-on: ubuntu-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
- name: Set up Java JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 11
- name: Install Android SDK
uses: ReactiveCircus/android-emulator-runner@v2
with:
api-level: 33
script: ./gradlew build
arch: x86_64
target: google_apis
- 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