CI Tests #4
This file contains hidden or 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: CI Tests | |
| on: | |
| pull_request: | |
| types: [opened, edited] | |
| workflow_dispatch: | |
| jobs: | |
| android-new-arch-test: | |
| runs-on: self-hosted | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run Android Tests | |
| run: | | |
| npm install | |
| npm run test:android | |
| ios-new-arch-test: | |
| runs-on: self-hosted | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run iOS Tests | |
| run: | | |
| npm install | |
| npm run test:ios | |
| android-old-arch-test: | |
| runs-on: self-hosted | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run Android Tests | |
| run: | | |
| npm install | |
| npm run test:oldArch:android | |
| ios-old-arch-test: | |
| runs-on: self-hosted | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run iOS Tests | |
| run: | | |
| npm install | |
| npm run test:oldArch:ios |