From f921dbfc0c3dfc55534744cb20d4a5ca2c379f5a Mon Sep 17 00:00:00 2001 From: Jarian Cottingham Date: Wed, 8 Jul 2026 01:57:58 +0000 Subject: [PATCH] fix(ci): mount entire tests/playwright dir to fix config resolution --- .gitea/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c66f23d..d414f17 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -174,8 +174,7 @@ jobs: APP_PORT="${{ steps.port.outputs.app_port }}" docker run --rm \ --network newsarchiver-network \ - -v $GITHUB_WORKSPACE/tests/playwright/tests:/tests/tests \ - -v $GITHUB_WORKSPACE/tests/playwright/playwright.config.js:/tests/playwright.config.js \ + -v $GITHUB_WORKSPACE/tests/playwright:/tests \ -w /tests \ -e APP_URL=http://newsarchiver-e2e:${APP_PORT} \ -e PLAYWRIGHT_BROWSERS_PATH=/ms-playwright \