-
-
Notifications
You must be signed in to change notification settings - Fork 0
25 lines (21 loc) · 586 Bytes
/
ci.yml
File metadata and controls
25 lines (21 loc) · 586 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
name: CI
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: ⚙️ Checkout code
uses: actions/checkout@v4
- name: Markdownlint CLi Action
uses: DavidAnson/markdownlint-cli2-action@v20
with:
globs: "**/*.md"
config: .markdownlint.jsonc
- name: Prettier Action
uses: creyD/prettier_action@v4.6
with:
prettier_options: --config .prettierrc --check .
dry: true
- name: PSScriptAnalyzer Action
run: ./Scripts/Run-ScriptAnalyzer.ps1 -CI
shell: pwsh