Skip to content

Tor improvements and better test fix #999

Tor improvements and better test fix

Tor improvements and better test fix #999

Workflow file for this run

name: E2E Android
on:
push:
paths:
- packages/mobile/**
- packages/backend/**
- packages/state-manager/**
- .github/workflows/e2e-android.yml
jobs:
detox-android:
timeout-minutes: 25
runs-on: [macos-14-xlarge]
steps:
- uses: actions/checkout@v4
with:
lfs: true
- 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: Pass local config
run : |
cat << EOF >> packages/mobile/android/local.properties
ndk.path=/Users/quiet/Library/Android/sdk/ndk/25.1.8937393
EOF
- name: Build Detox
run: |
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk-17.jdk/Contents/Home
cd packages/mobile
detox build -c android.emu.debug.ci
- name: Run basic tests
run: |
cd packages/mobile
detox test starter -c android.emu.debug.ci