From 8dc9a6bfcecf26ed464f053f529d0837fa639cc5 Mon Sep 17 00:00:00 2001 From: NuklearRabbit <145918611+NuklearRabbit@users.noreply.github.com> Date: Thu, 27 Aug 2026 11:36:02 +0200 Subject: [PATCH] ci: run browser quality on native Windows runner --- .gitea/workflows/quality.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/quality.yml b/.gitea/workflows/quality.yml index 7ce6586..2e60c52 100644 --- a/.gitea/workflows/quality.yml +++ b/.gitea/workflows/quality.yml @@ -17,8 +17,8 @@ jobs: extra_args: --only-verified quality: - # Node, Playwright and the browser gate are supported by the shared Linux pool. - runs-on: ubuntu-latest + # Browser quality runs against the dedicated bounded Windows 11 VM runner. + runs-on: windows-native steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -27,7 +27,7 @@ jobs: cache: npm - run: npm ci - run: npm run quality - - run: npx playwright install --with-deps chromium + - run: npx playwright install chromium - run: npm run test:browser:ci - name: Preserve browser failure evidence if: failure()