Skip to content

Commit

Permalink
chore: add CI checks for integration test app
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandkakonyi committed Dec 15, 2023
1 parent 858b6c8 commit 0151a7a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@ jobs:
run: ./gradlew assembleDebug --build-cache
working-directory: example/android

- name: Build Android integration test host app
run: ./gradlew assembleDebug --build-cache
working-directory: integration_test/android

test-build-ios:
name: Build iOS
runs-on: macOS-12
Expand All @@ -191,6 +195,9 @@ jobs:
- name: Install node_modules (example/)
run: yarn install --frozen-lockfile --cwd example

- name: Install node_modules (integration_test/)
run: yarn install --frozen-lockfile --cwd integration_test

- name: Install dependencies
run: brew bundle install

Expand Down Expand Up @@ -229,6 +236,12 @@ jobs:
env:
NSUnbufferedIO: YES

- name: Build iOS integration test host app
run: set -o pipefail && xcodebuild -workspace IntegrationTest.xcworkspace -scheme IntegrationTest -configuration Debug build CODE_SIGNING_ALLOWED='NO' | xcpretty
working-directory: integration_test/ios
env:
NSUnbufferedIO: YES

test-build-tvos:
name: Build tvOS
runs-on: macOS-12
Expand Down

0 comments on commit 0151a7a

Please sign in to comment.