Skip to content

Commit b79df04

Browse files
committed
fix pipeline
1 parent f9244c4 commit b79df04

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,14 @@ jobs:
2525
- name: Build
2626
run: dotnet build --configuration Release --no-restore
2727

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+
2834
- name: Install Playwright Browsers
29-
run: dotnet playwright install
35+
run: playwright install
3036

3137
- name: Test (NUnit)
3238
run: dotnet test Playwright.NUnit.Testing/Playwright.NUnit.Testing.csproj --configuration Release --no-build

0 commit comments

Comments
 (0)