Skip to content

Commit

Permalink
chore: start own metro
Browse files Browse the repository at this point in the history
  • Loading branch information
siepra committed Apr 17, 2024
1 parent 6124233 commit d71b19e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/e2e-android-self.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ jobs:
ndk.path=/Users/quiet/Library/Android/sdk/ndk/25.1.8937393
EOF
- name: Install pm2
run: npm install pm2@latest -g

- name: Start metro
run: |
cd packages/mobile
pm2 --name METRO start npm -- start
- name: Build Detox
run: |
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk-17.jdk/Contents/Home
Expand All @@ -41,4 +49,7 @@ jobs:
- name: Run basic tests
run: |
cd packages/mobile
detox test starter -c android.emu.debug.ci
detox test starter -c android.emu.debug.ci
- name: Stop metro
run: pm2 stop METRO

0 comments on commit d71b19e

Please sign in to comment.