Skip to content
Merged
Changes from all 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
14 changes: 4 additions & 10 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,12 @@ inputs:
Output generated reports in JSON format in addition to the configured format through Pester.
required: false
default: 'true'
StepSummary_Enabled:
description: |
Controls if a GitHub step summary should be shown.
required: false
default: 'true'
StepSummary_ShowTestOverview:
description: |
Controls whether to show the test overview table in the GitHub step summary.
required: false
default: 'true'
StepSummary_ShowTests:
default: 'false'
StepSummary_Mode:
description: |
Controls which tests to show in the GitHub step summary. Allows "Full", "Failed", or "None".
required: false
Expand Down Expand Up @@ -267,7 +262,7 @@ runs:
Script: ${{ github.action_path }}/scripts/main.ps1

- name: Invoke-Pester
uses: PSModule/Invoke-Pester@v3
uses: PSModule/Invoke-Pester@v4
id: test
env:
Settings: ${{ fromJson(steps.paths.outputs.result).Settings }}
Expand All @@ -282,9 +277,8 @@ runs:
Path: ${{ github.action_path }}/scripts/tests/PSScriptAnalyzer
Run_Path: ${{ fromJson(steps.paths.outputs.result).CodePath }}
ReportAsJson: ${{ inputs.ReportAsJson }}
StepSummary_Enabled: ${{ inputs.StepSummary_Enabled }}
StepSummary_ShowTestOverview: ${{ inputs.StepSummary_ShowTestOverview }}
StepSummary_ShowTests: ${{ inputs.StepSummary_ShowTests }}
StepSummary_Mode: ${{ inputs.StepSummary_Mode }}
StepSummary_ShowConfiguration: ${{ inputs.StepSummary_ShowConfiguration }}
Run_ExcludePath: ${{ inputs.Run_ExcludePath }}
Run_Exit: ${{ inputs.Run_Exit }}
Expand Down
Loading