-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
128 changed files
with
8,804 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
name: iOS 17 | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'ios/**' | ||
pull_request: | ||
paths: | ||
- 'ios/**' | ||
|
||
jobs: | ||
build: | ||
name: Test iOS 17 | ||
runs-on: macos-14 | ||
|
||
steps: | ||
- uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: 15.4 | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: True | ||
- name: Install CocoaPods | ||
run: gem install cocoapods -v 1.15.2 | ||
- name: Pod Install | ||
run: pod install --repo-update | ||
- name: Build | ||
run: ./build.sh | ||
- name: Test iOS 17.5 | ||
run: ./test.sh "Fuse iOS 17.5" "17.5" "iPhone 15" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
name: iOS 18 | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'ios/**' | ||
pull_request: | ||
paths: | ||
- 'ios/**' | ||
|
||
jobs: | ||
build: | ||
name: Test iOS 18 | ||
runs-on: macos-14 | ||
|
||
steps: | ||
- uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: '16.0' | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: True | ||
- name: Install CocoaPods | ||
run: gem install cocoapods -v 1.15.2 | ||
- name: Pod Install | ||
run: pod install --repo-update | ||
- name: Build | ||
run: ./build.sh | ||
- name: Test iOS 18.0 | ||
run: ./test.sh "Fuse iOS 18.0" "18.0" "iPhone 15" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
.DS_Store | ||
/fuse-* | ||
*.docc-build | ||
*.profraw | ||
xcuserdata | ||
.gradle |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
tsconfig.json | ||
jest.config.ts | ||
*.tgz | ||
spec | ||
src | ||
/android | ||
/ios | ||
/dist |
Oops, something went wrong.