-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (47 loc) · 1.27 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
45
46
47
48
49
50
51
52
53
54
55
name: Lint codebase
on:
push:
branches:
- main
paths:
- "frontend/**"
- "backend/**"
pull_request:
branches:
- main
paths:
- "frontend/**"
- "backend/**"
jobs:
run-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Filter changed files
uses: dorny/paths-filter@v2
id: changes
with:
filters: |
frontend:
- "frontend/**"
backend:
- "backend/**"
- name: Set up Node.js
if: steps.changes.outputs.frontend == 'true'
uses: actions/setup-node@v2
with:
node-version: "14.19.3"
cache: "yarn"
cache-dependency-path: frontend/yarn.lock
- name: Install Node.js dependencies
if: steps.changes.outputs.frontend == 'true'
run: yarn --cwd ./frontend --prefer-offline
- name: Lint frontend
if: steps.changes.outputs.frontend == 'true'
working-directory: ./frontend
run: yarn lint
- name: Lint backend
if: steps.changes.outputs.backend == 'true'
working-directory: ./backend
run: pip install black flake8 && python -m black --check . && python -m flake8 .