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 46b08ec commit 382fd2fCopy full SHA for 382fd2f
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