-
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (33 loc) · 889 Bytes
/
lint-powershell.yml
File metadata and controls
40 lines (33 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: PSScriptAnalyzer
defaults:
run:
shell: pwsh
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '22 1 * * 3'
permissions:
contents: read
jobs:
build:
permissions:
contents: read
security-events: write
name: PSScriptAnalyzer
runs-on: windows-2025
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install AnyPackage and ConvertToSARIF
run: Install-Module AnyPackage, ConvertToSARIF -Force -AllowClobber
- name: Run PSScriptAnalyzer
run: |
Import-Module AnyPackage, Appx, ConvertToSARIF
Invoke-ScriptAnalyzer -Path . -Recurse | ConvertTo-SARIF -FilePath results.sarif
- name: Upload SARIF results file
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif