fix: Many fixes #586
Workflow file for this run
This file contains hidden or 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: iOS App Build | |
on: | |
pull_request: | |
branches: | |
- main | |
- release/* | |
paths: | |
- "ios/**" | |
- "package.json" | |
jobs: | |
build: | |
runs-on: warp-ubuntu-latest-x64-8x | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: "yarn" | |
env: | |
SKIP_YARN_COREPACK_CHECK: "1" | |
- run: corepack enable | |
- 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 |