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 21b1ee8 commit 5fc6deeCopy full SHA for 5fc6dee
.github/workflows/build_and_test.yml
@@ -120,4 +120,19 @@ jobs:
120
script: |
121
mv ../archive/dist ../dist
122
npx expo run:android --variant release --no-bundler
123
+ adb logcat -c
124
+ set +e
125
maestro test maestro.yaml
126
+ STATUS=$?
127
+ adb logcat -d > adb.log
128
+ exit $STATUS
129
+
130
+ - name: Upload failed artifacts
131
+ if: failure()
132
+ uses: actions/upload-artifact@v4
133
+ with:
134
+ name: failure_artifacts
135
+ path: |
136
+ $HOME/.maestro/tests/**/*
137
+ test/android/app/build/outputs/apk/release/app-release.apk
138
+ test/adb.log
0 commit comments