-
Notifications
You must be signed in to change notification settings - Fork 15
35 lines (31 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
---
name: Lint
on: pull_request
jobs:
super-lint:
name: Lint with Supper-Linter
runs-on: ubuntu-latest
steps:
# Checks out a copy of your repository on the ubuntu-latest machine
- name: Checkout code
uses: actions/checkout@v4
with:
# Full git history needed to get proper list of changed files
fetch-depth: 0
# Runs the Super-Linter action
- name: Run Super-Linter
uses: github/super-linter@v6
env:
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Fail on errors
DISABLE_ERRORS: false
# this is a bit too much for this repo
VALIDATE_JSCPD: false
# disable it for now
VALIDATE_DOCKERFILE_HADOLINT: false
# disable this as well
VALIDATE_CHECKOV: false
# Not linting the CSS from Jupyter as we don't want to modify this
# (so it's easy to track changes in casse it's needed)
FILTER_REGEX_EXCLUDE: "single-user-eosc/eosc/custom.css"