-
Notifications
You must be signed in to change notification settings - Fork 6
70 lines (59 loc) · 1.8 KB
/
lint-check.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Lint
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 16
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: yarn install --frozen-lockfile
- name: Run ESLint
uses: wearerequired/lint-action@v2
with:
eslint: true
- name: Run Prettier
uses: wearerequired/lint-action@v2
with:
prettier: true
prettier_extensions: "css,html,js,json,jsx,md,sass,scss,ts,tsx,vue"
commit_message: "style: 🎨 fix code style issues with ${linter}"
auto_fix: true
github_token: ${{ secrets.GITHUB_TOKEN }}
git_email: "[email protected]"
git_name: "fairdataihub-bot"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.10.4
- name: Install Python dependencies
run: pip install black flake8
- name: Run Black
uses: wearerequired/lint-action@v2
with:
black: true
auto_fix: true
commit_message: "style: 🎨 fix code style issues with ${linter}"
github_token: ${{ secrets.GITHUB_TOKEN }}
git_email: "[email protected]"
git_name: "fairdataihub-bot"
- name: Run Flake8
uses: wearerequired/lint-action@v2
with:
flake8: true
flake8_dir: "./src/pyflask"
flake8_args: "--max-line-length=88"