Skip to content

Appcheck iOS prod fix #473

Appcheck iOS prod fix

Appcheck iOS prod fix #473

Workflow file for this run

name: iOS App Build
on:
pull_request:
branches:
- main
- release/*
paths:
- "ios/**"
- "package.json"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4.0.2
with:
node-version: 20.18.0
cache: "yarn"
- name: 🏗 Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: Install dependencies
run: |
yarn install
- name: Build iOS app
run: eas build --profile ios-simulator --platform ios --non-interactive