Skip to content

Commit a84d166

Browse files
📝[Enhancement]: Add environment variable listing step in workflow; remove skip option for Linter in PSModule configuration.
1 parent a37c7ff commit a84d166

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/workflow.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,14 @@ jobs:
118118
foreach ($key in $map.Keys) {
119119
$value = $map[$key]
120120
121-
Write-Host "$key = $value"
122-
123121
# Persist for following steps in this job
124122
"$key=$value" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
125123
}
126124
125+
- name: List all envs
126+
run: |
127+
Get-ChildItem env: | Format-Table -AutoSize
128+
127129
- name: Lint code base
128130
uses: super-linter/super-linter@7bba2eeb89d01dc9bfd93c497477a57e72c83240 # v8.2.0
129131
env:

tests/srcWithManifestTestRepo/.github/PSModule.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ Test:
1212
Publish:
1313
AutoCleanup: false
1414
Linter:
15-
Skip: true
1615
env:
1716
VALIDATE_BIOME_FORMAT: false
1817
VALIDATE_BIOME_LINT: false

0 commit comments

Comments
 (0)