-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (36 loc) · 1.04 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
name: Lint
on: push
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 16
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: cd client && yarn install
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Python dependencies
run: pip install black flake8
- name: Run linters
uses: wearerequired/lint-action@v1
with:
# Enable linters
# Temporarily disabled: https://github.com/wearerequired/lint-action/issues/88
# black: true
# black_args: --line-length=100
# black_dir: api/
flake8: true
flake8_dir: api/
eslint: true
eslint_dir: client/
prettier: false
prettier_dir: client/