We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eb9539 commit bb76cc2Copy full SHA for bb76cc2
.github/workflows/dotnet-playwright.yml
@@ -25,8 +25,11 @@ jobs:
25
- name: Build project
26
run: dotnet build --configuration Release --no-restore
27
28
- - name: Install Playwright browsers for .NET
29
- run: dotnet playwright install --with-deps
+ - name: Install Playwright .NET CLI tool
+ run: dotnet tool install --global Microsoft.Playwright.CLI
30
+
31
+ - name: Install Playwright browsers
32
+ run: playwright install --with-deps
33
34
- name: Run Playwright Tests
35
run: dotnet test --configuration Release --logger "trx;LogFileName=test_results.trx"
0 commit comments