Skip to content

Commit f9244c4

Browse files
committed
fix pipeline
1 parent 9093bef commit f9244c4

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ jobs:
1919
with:
2020
dotnet-version: '9.0.x'
2121

22-
- name: Install Playwright Browsers
23-
run: dotnet tool install --global Microsoft.Playwright.CLI && playwright install
24-
2522
- name: Restore dependencies
2623
run: dotnet restore
2724

2825
- name: Build
2926
run: dotnet build --configuration Release --no-restore
3027

28+
- name: Install Playwright Browsers
29+
run: dotnet playwright install
30+
3131
- name: Test (NUnit)
32-
run: dotnet test --configuration Release --no-build --filter "FullyQualifiedName~Playwright.NUnit.Testing" && dotnet add Playwright.NUnit.Testing package Microsoft.Playwright
32+
run: dotnet test Playwright.NUnit.Testing/Playwright.NUnit.Testing.csproj --configuration Release --no-build
3333

3434
- name: Test (TUnit)
35-
run: dotnet test --configuration Release --no-build --filter "FullyQualifiedName~Playwright.TUnit.Testing" && dotnet add Playwright.TUnit.Testing package Microsoft.Playwright
35+
run: dotnet test Playwright.TUnit.Testing/Playwright.TUnit.Testing.csproj --configuration Release --no-build

Playwright.TUnit.Testing/Playwright.TUnit.Testing.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
6-
<OutputType>Exe</OutputType>
76
<TargetFramework>net9.0</TargetFramework>
87
</PropertyGroup>
98

0 commit comments

Comments
 (0)