generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 3
28 lines (26 loc) · 563 Bytes
/
lint-gha.yml
File metadata and controls
28 lines (26 loc) · 563 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
name: Lint Github Actions
on:
push:
branches: [main]
paths:
- ".github/**"
pull_request:
paths:
- ".github/**"
jobs:
lint:
name: Lint YAML files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ibiqlik/action-yamllint@v3
with:
file_or_dir: .github
config_data: |
extends: default
rules:
line-length:
max: 120
level: warning
document-start: disable
truthy: disable