Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/Action-Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,17 @@ jobs:
with:
Name: PSModuleTest
WorkingDirectory: tests/srcTestRepo
ShowSummaryOnSuccess: true

- name: Check step summary is empty
shell: pwsh
run: |
$summary = Get-Content $env:GITHUB_STEP_SUMMARY -Raw
Write-Host "Step summary:"
Write-Host "[$summary]"
if ([string]::IsNullOrEmpty($summary)) {
throw "Step summary is not empty: $summary"
}
Write-Host "Step summary is empty as expected."

- name: Lint documentation
uses: super-linter/super-linter/slim@v8.1.0
Expand Down
Loading