File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 33 <PropertyGroup >
44 <ImplicitUsings >enable</ImplicitUsings >
55 <Nullable >enable</Nullable >
6- <OutputType >Exe</OutputType >
76 <TargetFramework >net9.0</TargetFramework >
87 </PropertyGroup >
98
You can’t perform that action at this time.
0 commit comments