-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (40 loc) · 1.05 KB
/
lint.yml
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
name: Lint
on:
pull_request:
branches: [main]
workflow_call:
jobs:
lint-markdown:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Lint markdown files
uses: avto-dev/[email protected]
with:
args: "**/*.md"
lint-yaml:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Lint yaml files
uses: ibiqlik/[email protected]
lint-dockerfile:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Changed files
id: changed-dockerfiles
uses: tj-actions/[email protected]
with:
separator: " "
files: Dockerfile
- name: Lint dockerfile (hadolint)
if: steps.changed-dockerfiles.outputs.any_changed == 'true'
uses: hadolint/[email protected]
with:
dockerfile: Dockerfile
recursive: true
verbose: true