Ci/use self hosted runner #9
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: E2E iOS | |
on: | |
pull_request: | |
paths: | |
- packages/mobile/** | |
jobs: | |
detox: | |
timeout-minutes: 25 | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Bootstrap project | |
run: npm run lerna bootstrap --scope @quiet/eslint-config,@quiet/logger,@quiet/common,@quiet/types,@quiet/state-manager,@quiet/backend,@quiet/identity,@quiet/mobile,backend-bundle | |
- name: Run basic tests | |
run: | | |
cd packages/mobile | |
detox test starter -c ios.sim.debug |