diff --git a/.github/workflows/Global - Integration - INTUNE.yml b/.github/workflows/Global - Integration - INTUNE.yml index 280c39013a..70796bc4f0 100644 --- a/.github/workflows/Global - Integration - INTUNE.yml +++ b/.github/workflows/Global - Integration - INTUNE.yml @@ -44,7 +44,7 @@ jobs: git push $SHA = git rev-parse HEAD echo "commitid=$SHA" >> $env:GITHUB_OUTPUT - - name: Commit Integration Tests + - name: Run Integration Tests shell: pwsh env: PUBLIC_USERNAME: ${{ secrets.PUBLIC_USERNAME }} @@ -52,4 +52,4 @@ jobs: run: | $CredPassword = ConvertTo-SecureString $env:PUBLIC_PASSWORD -AsPlainText -Force $Credential = New-Object System.Management.Automation.PSCredential ($env:PUBLIC_USERNAME, $CredPassword) - .\Tests\Integration\Microsoft365DSC\M365DSCIntegration.INTUNE.Tests.ps1 -Credential $Credential + & .\Tests\Integration\Microsoft365DSC\M365DSCIntegration.INTUNE.Tests.ps1 -Credential $Credential