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 8e19a04 commit 925e404Copy full SHA for 925e404
.github/workflows/main.yml
@@ -213,13 +213,14 @@ jobs:
213
api-level: 26
214
arch: ${{ matrix.arch }}
215
script: |
216
+ npx @playwright/mcp@latest --port 8931 --headless & NPX_PID=$!; sleep 15
217
adb root
218
adb remount
219
adb push ${{ github.workspace }}/. /data/local/tmp/
220
adb shell "mv -f /data/local/tmp/sqlite3 /system/xbin"
- npx @playwright/mcp@latest --port 8931 --headless & sleep 20
221
adb reverse tcp:8931 tcp:8931
222
adb shell "cd /data/local/tmp && sqlite3 \":memory:\" -cmd \".bail on\" \".load ./dist/mcp\" \"SELECT mcp_version();\" && ./android-test"
223
+ kill $NPX_PID
224
225
- name: linux-musl x86_64 test sqlite-mcp
226
if: matrix.name == 'linux-musl' && matrix.arch == 'x86_64'
0 commit comments