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 f9244c4 commit b79df04Copy full SHA for b79df04
.github/workflows/ci.yml
@@ -25,8 +25,14 @@ jobs:
25
- name: Build
26
run: dotnet build --configuration Release --no-restore
27
28
+ - name: Install Playwright CLI
29
+ run: dotnet tool install --global Microsoft.Playwright.CLI
30
+
31
+ - name: Add .NET tools to PATH
32
+ run: echo "$HOME/.dotnet/tools" >> $GITHUB_PATH
33
34
- name: Install Playwright Browsers
- run: dotnet playwright install
35
+ run: playwright install
36
37
- name: Test (NUnit)
38
run: dotnet test Playwright.NUnit.Testing/Playwright.NUnit.Testing.csproj --configuration Release --no-build
0 commit comments