mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
* [macOS] Fail Pester tests on error * return it back * [macOS] Pester tests invokation after install * fix nitpicks * CocoaPods fix
33 lines
686 B
PowerShell
33 lines
686 B
PowerShell
$os = Get-OSVersion
|
|
|
|
Describe "Bundler" {
|
|
It "Bundler" {
|
|
"bundler --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "Nomad" -Skip:($os.IsBigSur) {
|
|
Context "Nomad" {
|
|
It "Nomad CLI" {
|
|
$result = Get-CommandResult "gem list"
|
|
$result.Output | Should -BeLike "*nomad-cli*"
|
|
}
|
|
}
|
|
Context "Nomad CLI" {
|
|
It "Nomad CLI IPA" {
|
|
"ipa --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
}
|
|
|
|
Describe "Fastlane" {
|
|
It "Fastlane" {
|
|
"fastlane --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Describe "xcpretty" {
|
|
It "xcpretty" {
|
|
"xcpretty --version" | Should -ReturnZeroExitCode
|
|
}
|
|
} |