-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (38 loc) · 995 Bytes
/
linter.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
name: Lint CI
on:
- pull_request
jobs:
flake8:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
working-directory: ./backend
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Analysing the code with flake8
working-directory: ./backend
run: |
flake8 .
ESLint:
runs-on: self-hosted
steps:
# Check out the repository
- uses: actions/checkout@v3
# Install Node.js
- uses: actions/setup-node@v3
with:
node-version: 18.17.0
# Install your dependencies
- name: Install your dependencies
working-directory: ./frontend
run: npm ci
# Run ESLint
- name: Run ESLint
working-directory: ./frontend
run: npm run lint