Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .github/linters/.codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[codespell]
skip = ./.github/linters
2 changes: 1 addition & 1 deletion .github/workflows/Linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
persist-credentials: false

- name: Lint code base
uses: super-linter/super-linter@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 # v8.3.2
uses: super-linter/super-linter@12562e48d7059cf666c43a4ecb0d3b5a2b31bd9e # v8.4.0
env:
GITHUB_TOKEN: ${{ github.token }}
VALIDATE_BIOME_FORMAT: false
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ to streamline continuous integration for PowerShell projects:
The action's behavior is controlled by a **layered configuration** system, which merges settings from multiple sources in a specific order. The
highest-priority settings override lower-priority ones. The order of precedence is as follows:

| Setting | Default | Test Suite | Direct Inputs | Result |
|------------|---------|------------|---------------|--------|
| `SettingA` | `X` | | | `X` |
| `SettingB` | `X` | `Y` | | `Y` |
| `SettingC` | `X` | `Y` | `Z` | `Z` |
| Setting | Default | Test Suite | Direct Inputs | Result |
|-------------|---------|------------|---------------|--------|
| `Setting_A` | `X` | | | `X` |
| `Setting_B` | `X` | `Y` | | `Y` |
| `Setting_C` | `X` | `Y` | `Z` | `Z` |

This **last-write-wins** strategy means you can set global defaults while retaining the flexibility to override them at the action level.

Expand Down
2 changes: 1 addition & 1 deletion src/exec.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Get-Module | Format-Table -AutoSize | Out-String
'::endgroup::'

$configuration = New-PesterConfiguration -Hashtable $configuration
$PSStyle.OutputRendering = 'Host' # Ensure propper XML rendering
$PSStyle.OutputRendering = 'Host' # Ensure proper XML rendering
$testResults = Invoke-Pester -Configuration $configuration
$PSStyle.OutputRendering = 'Ansi'

Expand Down
Loading