From 2e6713718d06c1c833d61ae6d970a8adacdb517b Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Mon, 6 Oct 2025 10:13:17 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=A9=B9=20[Patch]:=20Add=20comment=20f?= =?UTF-8?q?or=20faster=20testing=20and=20ensure=20linter=20environment=20v?= =?UTF-8?q?ariables=20are=20defined?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/PSModule.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/PSModule.yml b/.github/PSModule.yml index a1912f7..e05a6ad 100644 --- a/.github/PSModule.yml +++ b/.github/PSModule.yml @@ -5,6 +5,7 @@ Test: CodeCoverage: PercentTarget: 0 +# Uncomment this to test faster by skipping some steps # TestResults: # Skip: true # SourceCode: @@ -19,3 +20,12 @@ Test: # Build: # Docs: # Skip: true +Linter: + env: + VALIDATE_BIOME_FORMAT: false + VALIDATE_BIOME_LINT: false + VALIDATE_GITHUB_ACTIONS_ZIZMOR: false + VALIDATE_JSCPD: false + VALIDATE_JSON_PRETTIER: false + VALIDATE_MARKDOWN_PRETTIER: false + VALIDATE_YAML_PRETTIER: false From 6b4402b8378283380ef7a0bb5902f8922ae32fa7 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Mon, 6 Oct 2025 15:00:33 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=A9=B9=20[Patch]:=20Add=20DESCRIPTION?= =?UTF-8?q?=20section=20to=20module=20test=20functions=20for=20clarity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/functions/public/Get-PSModuleTest.ps1 | 3 +++ src/functions/public/New-PSModuleTest.ps1 | 3 +++ src/functions/public/Set-PSModuleTest.ps1 | 3 +++ src/functions/public/Test-PSModuleTest.ps1 | 3 +++ 4 files changed, 12 insertions(+) diff --git a/src/functions/public/Get-PSModuleTest.ps1 b/src/functions/public/Get-PSModuleTest.ps1 index 0e9aacf..ffe3483 100644 --- a/src/functions/public/Get-PSModuleTest.ps1 +++ b/src/functions/public/Get-PSModuleTest.ps1 @@ -5,6 +5,9 @@ function Get-PSModuleTest { .SYNOPSIS Performs tests on a module. + .DESCRIPTION + Performs tests on a module. + .EXAMPLE Test-PSModule -Name 'World' diff --git a/src/functions/public/New-PSModuleTest.ps1 b/src/functions/public/New-PSModuleTest.ps1 index d4e6e26..1db3e8f 100644 --- a/src/functions/public/New-PSModuleTest.ps1 +++ b/src/functions/public/New-PSModuleTest.ps1 @@ -5,6 +5,9 @@ function New-PSModuleTest { .SYNOPSIS Performs tests on a module. + .DESCRIPTION + Performs tests on a module. + .EXAMPLE Test-PSModule -Name 'World' diff --git a/src/functions/public/Set-PSModuleTest.ps1 b/src/functions/public/Set-PSModuleTest.ps1 index a87ac11..23ec98e 100644 --- a/src/functions/public/Set-PSModuleTest.ps1 +++ b/src/functions/public/Set-PSModuleTest.ps1 @@ -3,6 +3,9 @@ .SYNOPSIS Performs tests on a module. + .DESCRIPTION + Performs tests on a module. + .EXAMPLE Test-PSModule -Name 'World' diff --git a/src/functions/public/Test-PSModuleTest.ps1 b/src/functions/public/Test-PSModuleTest.ps1 index 26be2b9..0c27510 100644 --- a/src/functions/public/Test-PSModuleTest.ps1 +++ b/src/functions/public/Test-PSModuleTest.ps1 @@ -3,6 +3,9 @@ .SYNOPSIS Performs tests on a module. + .DESCRIPTION + Performs tests on a module. + .EXAMPLE Test-PSModule -Name 'World'