From a9879b18a1e422cd777cb127363f8c613710787d Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Sat, 22 Nov 2025 07:32:14 -0600 Subject: [PATCH] chore: fix workflow to locate playwright scrip in correct directory --- .github/workflows/pull_request.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 124bb68..346ed58 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -33,10 +33,10 @@ jobs: run: dotnet build --no-restore - name: Install playwright dependencies shell: pwsh - run: ./test/Blog.Tests/bin/Debug/net9.0/playwright.ps1 install-deps + run: ./test/Blog.Tests/bin/Debug/net10.0/playwright.ps1 install-deps - name: Install playwright shell: pwsh - run: ./test/Blog.Tests/bin/Debug/net9.0/playwright.ps1 install + run: ./test/Blog.Tests/bin/Debug/net10.0/playwright.ps1 install - name: Test project run: dotnet test -e DOTNET_ENVIRONMENT=CI --no-build --verbosity normal -s ./test/Blog.Tests/ci.runsettings - name: Upload test results @@ -49,4 +49,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: playwright-traces - path: ./test/Blog.Tests/bin/Debug/net9.0/playwright-traces + path: ./test/Blog.Tests/bin/Debug/net10.0/playwright-traces