From 840d53e8f808f0adafd2cdf55090a7779135ef8e Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Thu, 9 Jul 2026 13:14:14 +0200 Subject: [PATCH] maintenance: rename helper module to Get-PesterCodeCoverage.Helpers Aligns with the action helper-module naming standard: name the module after the action, not the generic Helpers (which collides with the shared framework Helpers module in the runner's single module session). Renames src/Helpers.psm1 to src/Get-PesterCodeCoverage.Helpers.psm1 and updates the entry-script import. No runtime logic changed. Part of PSModule/Process-PSModule#364. --- src/{Helpers.psm1 => Get-PesterCodeCoverage.Helpers.psm1} | 0 src/main.ps1 | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{Helpers.psm1 => Get-PesterCodeCoverage.Helpers.psm1} (100%) diff --git a/src/Helpers.psm1 b/src/Get-PesterCodeCoverage.Helpers.psm1 similarity index 100% rename from src/Helpers.psm1 rename to src/Get-PesterCodeCoverage.Helpers.psm1 diff --git a/src/main.ps1 b/src/main.ps1 index 2c4fac7..dc3fc9d 100644 --- a/src/main.ps1 +++ b/src/main.ps1 @@ -24,7 +24,7 @@ LogGroup 'Init - Setup prerequisites' { } Import-Module -Name $name } - Import-Module "$PSScriptRoot/Helpers.psm1" + Import-Module "$PSScriptRoot/Get-PesterCodeCoverage.Helpers.psm1" } $owner = $env:GITHUB_REPOSITORY_OWNER