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 efc1136 commit 419ab05Copy full SHA for 419ab05
1 file changed
.github/workflows/build.yml
@@ -37,6 +37,10 @@ jobs:
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
45
46
- name: Test
0 commit comments