Skip to content

Commit 7ee5500

Browse files
committed
chore: uncomment installation of required PowerShell modules in publish workflow
1 parent a6f37ca commit 7ee5500

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/publish.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121
- name: Checkout code
2222
uses: actions/checkout@v4
2323

24-
# - name: Install required PowerShell modules
25-
# shell: pwsh
26-
# run: |
27-
# Write-Host "Installing required modules..." -ForegroundColor Cyan
28-
# Install-Module -Name Pester -AllowClobber -Scope CurrentUser -SkipPublisherCheck -Force
29-
# Install-Module -Name PSScriptAnalyzer -AllowClobber -Scope CurrentUser -Force
30-
# Install-Module -Name PSPublishModule -AllowClobber -Scope CurrentUser -Force
31-
# Install-Module -Name PSCertUtil -AllowClobber -Scope CurrentUser -Force
32-
# Write-Host "Modules installed successfully" -ForegroundColor Green
24+
- name: Install required PowerShell modules
25+
shell: pwsh
26+
run: |
27+
Write-Host "Installing required modules..." -ForegroundColor Cyan
28+
Install-Module -Name Pester -AllowClobber -Scope CurrentUser -SkipPublisherCheck -Force
29+
Install-Module -Name PSScriptAnalyzer -AllowClobber -Scope CurrentUser -Force
30+
Install-Module -Name PSPublishModule -AllowClobber -Scope CurrentUser -Force
31+
Install-Module -Name PSCertUtil -AllowClobber -Scope CurrentUser -Force
32+
Write-Host "Modules installed successfully" -ForegroundColor Green
3333
3434
# - name: Run Pester tests
3535
# shell: pwsh

0 commit comments

Comments
 (0)