Cordova build actions #10
Workflow file for this run
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: iOS Tests | |
on: | |
push: | |
branches: | |
- develop | |
- release/* | |
pull_request: | |
jobs: | |
test-cordova: | |
name: Test Cordova iOS | |
runs-on: macos-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v4 | |
- name: Prepare environment | |
uses: ./.github/actions/prepare | |
with: | |
env-file: ${{ secrets.ENV_TEST_FILE }} | |
- name: Run Cordova iOS Tests | |
run: npm run buildAndRunCordovaIosTests | |
test-react-native: | |
name: Test React Native iOS | |
runs-on: macos-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v4 | |
- name: Prepare environment | |
uses: ./.github/actions/prepare | |
with: | |
env-file: ${{ secrets.ENV_TEST_FILE }} | |
- name: Run React-Native iOS Tests | |
run: npm run buildAndRunReactIosTests |