We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 801363e commit 9845835Copy full SHA for 9845835
.github/workflows/e2e-android.yml
@@ -83,6 +83,9 @@ jobs:
83
avd-name: e2e_emulator
84
arch: x86_64
85
script: |
86
+ bash <<'EOF'
87
+ set -e
88
+
89
# Install root node dependencies
90
yarn install
91
# Install example app node dependencies
@@ -92,7 +95,7 @@ jobs:
92
95
$ANDROID_HOME/platform-tools/adb reverse tcp:8081 tcp:8081
93
96
94
97
# Start Metro in the background
- nohup E2E=true yarn --cwd apps/${{ env.WORKING_DIRECTORY }} start &> output.log &
98
+ E2E=true yarn --cwd apps/${{ env.WORKING_DIRECTORY }} start &> output.log &
99
METRO_PID=$!
100
101
echo "Metro PID is $METRO_PID"
@@ -112,6 +115,8 @@ jobs:
112
115
# Kill Metro
113
116
kill $METRO_PID || true
114
117
118
+ EOF
119
120
- name: Upload test report
121
uses: actions/upload-artifact@v4
122
with:
0 commit comments