Skip to content

Commit

Permalink
run iOS integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
saikrishna321 committed May 6, 2024
1 parent 0ae9e44 commit d143448
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.PAT_TOKEN }}
- name: Build
run: |
npm ci
Expand All @@ -79,4 +82,24 @@ jobs:
arch: x86_64
profile: Nexus 6
script: npm run integration-android
IOSIntegrationTest:
name: Build with Submodule
runs-on: macos-latest
strategy:
matrix:
node: [ 20 ]

steps:
- name: Checkout repository with submodules
uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.PAT_TOKEN }}
- name: Build
run: |
npm ci
npm run bundle
- name: Run iOS Integration Test
run: |
npm run integration-ios

0 comments on commit d143448

Please sign in to comment.