forked from software-mansion/react-native-reanimated
-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (39 loc) · 1022 Bytes
/
ios-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Test iOS build
on:
pull_request:
branches:
- main
paths:
- 'ios/**'
- 'Common/**'
push:
branches:
- main
jobs:
build:
# runs-on: macos-latest // issue: https://github.com/actions/virtual-environments/issues/4060
runs-on: macos-11
env:
WORKING_DIRECTORY: Example
concurrency:
group: ios-${{ github.ref }}
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v2
- name: Use Node.js 14
uses: actions/setup-node@v2
with:
node-version: 14
cache: 'yarn'
- name: Install Reanimated node dependencies
run: yarn
- name: Install node dependencies
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn
- name: Install pods
working-directory: ${{ env.WORKING_DIRECTORY }}/ios
run: pod install
- name: Build app
working-directory: ${{ env.WORKING_DIRECTORY }}
run: npx react-native run-ios