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 b693138 commit 54a34ceCopy full SHA for 54a34ce
‎.github/workflows/Action-Test.yml‎
@@ -46,7 +46,15 @@ jobs:
46
with:
47
Name: PSModuleTest
48
WorkingDirectory: tests/srcTestRepo
49
- ShowSummaryOnSuccess: true
+
50
+ - name: Check step summary is empty
51
+ shell: pwsh
52
+ run: |
53
+ $summary = Get-Content $env:GITHUB_STEP_SUMMARY -Raw
54
+ if ($summary.Trim() -ne '') {
55
+ throw "Step summary is not empty: $summary"
56
+ }
57
+ Write-Host "Step summary is empty as expected."
58
59
- name: Lint documentation
60
uses: super-linter/super-linter/[email protected]
0 commit comments