Skip to content

feat(): add build.yml step #15

feat(): add build.yml step

feat(): add build.yml step #15

Workflow file for this run

name: React Native Build
on:
pull_request:
branches:
- master
jobs:
build:
runs-on : macos-latest
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Set up JDK 17
uses: actions/[email protected]
with:
distribution: adopt
java-version: 17
- name: Grant execute permissions for gradlew
run: chmod +x ./gradlew
- name: Build with Gradle
run : ./gradlew build
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