-
Notifications
You must be signed in to change notification settings - Fork 13
43 lines (38 loc) · 1.35 KB
/
linters.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: Run linters
# yamllint disable-line rule:truthy
on:
push:
pull_request:
types: [opened, reopened, synchronize]
jobs:
run-linters:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Lint Code Base (PR against development branch)
# yamllint disable-line rule:line-length
if: github.event_name == 'pull_request' && github.base_ref == 'development'
uses: github/super-linter/slim@v4
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: ${{ github.base_ref }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DISABLE_ERRORS: true
- name: Lint Code Base (against PR base branch)
# yamllint disable-line rule:line-length
if: github.event_name == 'pull_request' && github.base_ref != 'development'
uses: github/super-linter/slim@v4
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: ${{ github.base_ref }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DISABLE_ERRORS: true
- name: Lint Code Base (against current branch)
if: github.event_name == 'push'
uses: github/super-linter/slim@v4
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: ${{ github.head_ref }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DISABLE_ERRORS: true