From 2dff3419a1306dd44a860a52671d45178a18e4ff Mon Sep 17 00:00:00 2001 From: Alan Bridgeman Date: Wed, 13 May 2026 10:04:55 -0500 Subject: [PATCH] Attempting to fix CI/CD issue with installing Playwright dependencies --- .forgejo/workflows/publish.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/publish.yaml b/.forgejo/workflows/publish.yaml index 6610952..2ac405d 100644 --- a/.forgejo/workflows/publish.yaml +++ b/.forgejo/workflows/publish.yaml @@ -59,7 +59,8 @@ jobs: # We only need chromium for CI to save time, unless you configured multi-browser testing - name: Install Playwright Browsers - run: npx playwright install --with-deps chromium + run: | + echo "${{ secrets.SUDO_PASSWORD }}" | sudo -S npx playwright install --with-deps chromium # This will automatically boot your server.ts, run tests, and tear it down when done - name: Run E2E Tests & Accessibility Audits