Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): add ci for ios example build test #1087

Merged
merged 8 commits into from
Aug 8, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/workflows/ios-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: iOS Build

# iOS matrix build on XCode 13.3 up to latest

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build-and-test:
runs-on: macos-latest

strategy:
matrix:
xcode-version: [13.3, latest]

steps:
- name: Checkout Repository
uses: actions/checkout@v2
matinzd marked this conversation as resolved.
Show resolved Hide resolved

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18

- name: Enable corepack
run: corepack enable

- name: Install CocoaPods
run: sudo gem install cocoapods

- name: Install Dependencies
run: yarn install --immutable

- name: Build Paper iOS Example
run: yarn paper:ios