[macOS] Add actions/runner cache (#11713)

This commit is contained in:
Erik Bershel
2025-03-04 17:02:40 +01:00
committed by GitHub
parent 0f4b96df94
commit bb7932d627
8 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
Describe "RunnerCache" {
Context "runner cache directory not empty" {
It "<RunnerCachePath> not empty" -TestCases @{ RunnerCachePath = "/opt/runner-cache" } {
(Get-ChildItem -Path "$RunnerCachePath/*.tar.gz" -Recurse).Count | Should -BeGreaterThan 0
}
}
}