-
Notifications
You must be signed in to change notification settings - Fork 2
47 lines (45 loc) · 1.77 KB
/
linting.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
name: Linting
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
linting_python_django:
name: Linting Python and Django
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Check Python rules via pycodestyle
run: pycodestyle *.py datenwerft/*.py accounts/*.py accounts/*/*.py bemas/*.py bemas/models/*.py bemas/tests/*.py bemas/views/*.py datenmanagement/*.py datenmanagement/*/*.py toolbox/*.py toolbox/*/*.py
- name: Check Django rules via djLint
run: djlint datenwerft/templates/*.html accounts/templates/accounts/log*.html bemas/templates/bemas/*.html datenmanagement/templates/datenmanagement/*.html
linting_js_css:
name: Linting JavaScript and CSS
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: latest
- name: Install Node.js dependencies
run: npm install
- name: Check CSS rules via Stylelint
run: npx stylelint "datenwerft/**/*.css accounts/**/*.css" "datenmanagement/**/*.css"
- name: Check JavaScript rules via ESLint
run: npx eslint "bemas/static/bemas/js/*.js" "bemas/templates/bemas/*.html" "datenmanagement/static/datenmanagement/js/*.js" "datenmanagement/templates/datenmanagement/list.html" "datenmanagement/templates/datenmanagement/start.html"