Skip to content

Commit 53dab29

Browse files
🩹 [CI]: Fix condition checks in Get-TestSuites workflow to correctly skip tests for SourceCode and Module
1 parent a5a1456 commit 53dab29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎.github/workflows/Get-TestSuites.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@ jobs:
104104
}
105105
106106
LogGroup 'Source Code Test Suites:' {
107-
if ($skipTests -notcontain 'SourceCode') {
107+
if ($skipTests -notcontains 'SourceCode') {
108108
$osConfigs | Format-Table -AutoSize | Out-String
109109
Set-GitHubOutput -Name SourceCodeTestSuites -Value $osConfigs
110110
}
111111
}
112112
113113
LogGroup 'Module Test Suites:' {
114-
if ($skipTests -notcontain 'Module') {
114+
if ($skipTests -notcontains 'Module') {
115115
$osConfigs | Format-Table -AutoSize | Out-String
116116
Set-GitHubOutput -Name ModuleTestSuites -Value $osConfigs
117117
}

0 commit comments

Comments
 (0)