-
-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (51 loc) · 1.22 KB
/
lint.yaml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
---
name: lint
on: # yamllint disable-line rule:truthy
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
yaml:
name: Yamllint
runs-on: ubuntu-20.04
steps:
- uses: actions/[email protected]
with:
fetch-depth: 1
- name: Lint YAML
uses: ibiqlik/[email protected]
with:
config_file: "./.github/.yamllint-config.yaml"
# markdown-link-check:
# runs-on: ubuntu-20.04
# steps:
# - uses: actions/[email protected]
# with:
# fetch-depth: 1
# - uses: gaurav-nelson/github-action-markdown-link-check@v1
# with:
# folder-path: 'docs'
markdownlint-cli:
runs-on: ubuntu-20.04
steps:
- uses: actions/[email protected]
with:
fetch-depth: 1
- name: Markdownlint-cli
uses: nosborn/[email protected]
with:
files: docs
config_file: './.github/.markdownlint.yaml'
shellcheck:
runs-on: ubuntu-20.04
steps:
- uses: actions/[email protected]
with:
fetch-depth: 1
- name: Lint Hack Scripts
uses: reviewdog/[email protected]
with:
path: "./hack"
level: "error"