We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 924f810 commit 95c591fCopy full SHA for 95c591f
.github/workflows/test-adb-provider.yml
@@ -61,7 +61,7 @@ jobs:
61
adb wait-for-device
62
echo "Android emulator is ready"
63
adb devices
64
- cd ${{ inputs.module-path }} && pwsh -File - <<'PWSH'
+ cat > /tmp/run-tests.ps1 <<'EOF'
65
Write-Host 'Running Pester tests for ADB Provider...'
66
$config = New-PesterConfiguration
67
$config.Run.Path = 'Tests/Adb.Tests.ps1'
@@ -87,7 +87,8 @@ jobs:
87
}
88
89
Write-Host 'All tests passed successfully!' -ForegroundColor Green
90
- PWSH
+ EOF
91
+ cd ${{ inputs.module-path }} && pwsh -File /tmp/run-tests.ps1
92
93
- name: Upload test results
94
uses: actions/upload-artifact@v4
0 commit comments