forked from TryQuiet/quiet
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (33 loc) · 944 Bytes
/
e2e-ios.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: E2E iOS
on:
push:
paths:
- packages/mobile/**
- packages/backend/**
- packages/state-manager/**
jobs:
detox-ios:
timeout-minutes: 10
runs-on: [self-hosted, macOS, ARM64, iOS]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
npm i
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: Pull binaries
run: |
git lfs install
git lfs pull
- name: Install pods
run: |
cd packages/mobile/ios
pod install
- name: Build Detox
run: |
cd packages/mobile
detox build -c ios.sim.debug.ci
- name: Run basic tests
run: |
cd packages/mobile
detox test starter -c ios.sim.debug.ci