From 4002d86c28b4b81bc74f046fdce6e0f184c5b714 Mon Sep 17 00:00:00 2001 From: Julian Speckmann <176780813+KingIronMan2011@users.noreply.github.com> Date: Fri, 2 Jan 2026 04:34:10 +0100 Subject: [PATCH] Update Playwright installation to use version variable --- .github/workflows/auto-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-test.yml b/.github/workflows/auto-test.yml index d08a7f3e0..f0dfdfa55 100644 --- a/.github/workflows/auto-test.yml +++ b/.github/workflows/auto-test.yml @@ -123,8 +123,8 @@ jobs: node-version: 22 - run: npm install - - name: Install Playwright - run: npx playwright install + - name: Install Playwright ${{ env.PLAYWRIGHT_VERSION }} + run: npx playwright@${{ env.PLAYWRIGHT_VERSION }} install - run: npm run build - run: npm run test-e2e