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 382fd2f commit 4c23212Copy full SHA for 4c23212
1 file changed
.github/workflows/build.yml
@@ -31,17 +31,8 @@ jobs:
31
- name: Build
32
run: dotnet build --configuration Release --no-restore
33
34
- - name: Install Playwright browsers
35
- shell: pwsh
36
- run: |
37
- $playwrightScript = Get-ChildItem "test/OrchardCoreContrib.Testing.UI.Tests/bin/Release/*/playwright.ps1" |
38
- Select-Object -First 1 -ExpandProperty FullName
39
-
40
- if ([string]::IsNullOrWhiteSpace($playwrightScript)) {
41
- throw "Unable to find playwright.ps1 in the built UI test output."
42
- }
43
44
- & $playwrightScript install
+ - name: Install Playwright.NET Browsers & Dependencies
+ run: pwsh test/OrchardCoreContrib.Testing.UI.Tests/bin/Release/*/playwright.ps1 install --with-deps
45
46
- name: Test
47
run: dotnet test --configuration Release --no-restore --verbosity normal
0 commit comments