Skip to content

Commit e09136a

Browse files
author
jantari
committed
add PSScriptAnalyzer linting CI on every pull request, issue lazywinadmin#18
1 parent a54cf0e commit e09136a

File tree

1 file changed

+80
-0
lines changed

1 file changed

+80
-0
lines changed
+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
---
2+
3+
name: Linting
4+
5+
on: [pull_request]
6+
7+
env:
8+
PSSA_VERSION: latest
9+
PSSA_EXCLUDE_RULES:
10+
DELETE_OLD_COMMENTS: 1
11+
12+
jobs:
13+
PSScriptAnalyzer:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@master
17+
18+
- name: Install PSScriptAnalyzer Module
19+
run: |
20+
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
21+
if ("${{ env.PSSA_VERSION }}" -in @($null, "latest")) {
22+
Install-Module PSScriptAnalyzer -Scope CurrentUser -Repository PSGallery -Force
23+
} else {
24+
Install-Module PSScriptAnalyzer -RequiredVersion "${{ env.PSSA_VERSION }}" -Scope CurrentUser -Repository PSGallery -Force
25+
}
26+
shell: pwsh -Command "$ProgressPreference = 'SilentlyContinue'; & '{0}'"
27+
28+
- name: Run PSScriptAnalyzer
29+
run: |
30+
Import-Module PSScriptAnalyzer -Verbose
31+
$ExcludeRules = '${{ env.PSSA_EXCLUDE_RULES }}'.Split([string[]]@(" ", ",", "`n"), [System.StringSplitOptions]::RemoveEmptyEntries)
32+
Invoke-ScriptAnalyzer -Path "$ENV:GITHUB_WORKSPACE" -ExcludeRule $ExcludeRules -Recurse -Verbose | Tee-Object -Variable PSSAResults
33+
$SUMMARY = ($PSSAResults | Group-Object -Property Severity -NoElement | Foreach-Object { "- $($_.Count) $($_.Name)" }) -join [Environment]::NewLine
34+
$DETAILS = ($PSSAResults | Format-List -Property @{'Name' = 'Location'; 'Expression' = { "{0} [{1}, {2}]" -f (Resolve-Path -LiteralPath $_.ScriptPath -Relative), $_.Line, $_.Column }}, RuleName, Severity, Message | Out-String -Width 88).Trim()
35+
$STRINGBODY = "PSScriptAnalyzer results as of this commit:
36+
37+
$SUMMARY
38+
39+
<details><summary>See details</summary>
40+
41+
``````
42+
$DETAILS
43+
``````
44+
45+
</details>
46+
<!-- IsPSSABotComment -->" | ConvertTo-Json -Compress
47+
48+
$BODY = '"body":{0}' -f $STRINGBODY
49+
Set-Content -LiteralPath 'COMMENTBODY.json' -Value "{$BODY}"
50+
shell: pwsh -Command "$ProgressPreference = 'SilentlyContinue'; & '{0}'"
51+
52+
- name: Get PR number
53+
run: |
54+
CURLOUT="$(echo $GITHUB_REF | awk -F '[/|/]' '{print $3}')"
55+
echo "PR_NUMBER=${CURLOUT}" >> $GITHUB_ENV
56+
57+
- name: Delete old comments
58+
run: |
59+
$comments = Invoke-RestMethod "https://api.github.com/repos/${env:GITHUB_REPOSITORY}/issues/${env:PR_NUMBER}/comments" -Headers @{
60+
'Authorization' = "token ${{ secrets.GITHUB_TOKEN }}"
61+
}
62+
$commentIDs = $comments | Where { $_.body -like "*<!-- IsPSSABotComment -->" } | Select-Object -Expand url
63+
echo "Will be deleting these:"
64+
echo $commentIDs
65+
$commentIDs | Foreach-Object {
66+
Invoke-WebRequest "$_" -Method Delete -Headers @{
67+
'Authorization' = "token ${{ secrets.GITHUB_TOKEN }}"
68+
}
69+
}
70+
shell: pwsh -Command "$ProgressPreference = 'SilentlyContinue'; & '{0}'"
71+
if: env.DELETE_OLD_COMMENTS == 1
72+
73+
- name: Create PR comment
74+
run: |
75+
curl -sL --data @COMMENTBODY.json \
76+
-H "Content-Type: application/json" \
77+
-H "Accept: application/vnd.github.groot-preview+json" \
78+
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
79+
"https://api.github.com/repos/$GITHUB_REPOSITORY/issues/$PR_NUMBER/comments"
80+

0 commit comments

Comments
 (0)