From 8037812b1d8fc7b8efdd18c44efa2865d9386dee Mon Sep 17 00:00:00 2001 From: Alex Feyerke Date: Thu, 26 Mar 2026 22:13:38 +0100 Subject: [PATCH] ci: speed up CI by installing fewer playwright deps --- bin/run-test.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/run-test.sh b/bin/run-test.sh index 32530fdb90..89feca5c22 100755 --- a/bin/run-test.sh +++ b/bin/run-test.sh @@ -83,7 +83,11 @@ pouchdb-build-node() { } if [[ $CI = true ]] && [[ $CLIENT != node ]]; then - npx playwright install --with-deps "$CLIENT" + # npx playwright install --with-deps "$CLIENT" + # The full install with deps was glacially slow on CI + npx playwright install "$CLIENT" + sudo apt-get update + sudo apt-get install -y libwoff1 libvpx9 libevent-2.1-7t64 libopus0 libgstreamer-plugins-base1.0-0 libgstreamer-gl1.0-0 libgstreamer-plugins-bad1.0-0 libflite1 libavif16 libharfbuzz-icu0 libsecret-1-0 libhyphen0 libwayland-server0 libmanette-0.2-0 libgles2 gstreamer1.0-libav fi if [[ -n $SERVER ]]; then