Update .github/workflows/tests.yml

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
David Refoua
2025-12-15 06:33:39 +03:30
committed by GitHub
parent 641ce7b1e8
commit 2780a43323

View File

@@ -90,7 +90,13 @@ jobs:
✅ Vendor dependencies initialized successfully. ✅ Vendor dependencies initialized successfully.
**Vendor Versions:** **Vendor Versions:**
$($vendorInfo -join "`n") $(
if ($vendorInfo.Count -eq 0) {
"_No vendor version information available._"
} else {
$vendorInfo -join "`n"
}
)
"@ "@