MSDK-873 Added pod repo update step #65
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
name: Native Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
env: | |
BUNDLE_GEMFILE: ${{ github.workspace }}/TestApp/Gemfile | |
jobs: | |
test-native-android: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Prepare Android | |
uses: ./.github/actions/prepare-android | |
- name: Run Unit Tests for Android | |
run: yarn test:android | |
test-native-ios: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Prepare iOS | |
uses: ./.github/actions/prepare-ios | |
- name: Install Lib cocoapods | |
run: | | |
(cd ios;pod repo update;pod install --verbose) | |
- name: Run Unit Tests for iOS | |
run: yarn test:ios |