-
Notifications
You must be signed in to change notification settings - Fork 3
43 lines (35 loc) · 1014 Bytes
/
lint-generic.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
name: Lint
on:
workflow_call:
jobs:
# -----------------------------------------------------------------------------------------------
# JOB (1/1): Lint
# -----------------------------------------------------------------------------------------------
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: "[SETUP] Checkout repository"
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Lint Files
uses: cytopia/shell-command-retry-action@v0.1.6
with:
command: |
make lint-files
- name: Lint Yaml
uses: cytopia/shell-command-retry-action@v0.1.6
with:
command: |
make lint-yaml
- name: Lint JSON
uses: cytopia/shell-command-retry-action@v0.1.6
with:
command: |
make lint-json
- name: Lint Bash
uses: cytopia/shell-command-retry-action@v0.1.6
with:
command: |
make lint-bash