add runner install script for windows image (#8671)

This commit is contained in:
Peter Shepehrd
2023-11-10 11:24:16 -05:00
committed by GitHub
parent ded4e461b0
commit 23e386d1c2
4 changed files with 25 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
Describe "RunnerCache" {
Context "runner cache directory not empty" {
It "C:\ProgramData\runner" {
(Get-ChildItem -Path "C:\ProgramData\runner\*.zip" -Recurse).Count | Should -BeGreaterThan 0
}
}
}