diff --git a/.github/workflows/Global - Integration - AAD.yml b/.github/workflows/Global - Integration - AAD.yml index df54194a4b..64f1006847 100644 --- a/.github/workflows/Global - Integration - AAD.yml +++ b/.github/workflows/Global - Integration - AAD.yml @@ -88,6 +88,15 @@ jobs: { Write-Host "All resources in the Tenant are in the Desired State" } + + try + { + $Result = Get-DSCConfiguration -Verbose -ErrorAction Stop + } + catch + { + throw $_ + } - name: Generate {Update} Integration Tests from Examples shell: powershell run: | @@ -146,6 +155,15 @@ jobs: { Write-Host "All resources in the Tenant are in the Desired State" } + + try + { + $Result = Get-DSCConfiguration -Verbose -ErrorAction Stop + } + catch + { + throw $_ + } - name: Generate {Remove} Integration Tests from Examples shell: powershell run: | @@ -205,3 +223,11 @@ jobs: Write-Host "All resources in the Tenant are in the Desired State" } + try + { + $Result = Get-DSCConfiguration -Verbose -ErrorAction Stop + } + catch + { + throw $_ + }