-
-
Notifications
You must be signed in to change notification settings - Fork 55
86 lines (67 loc) · 1.77 KB
/
QA.yaml
File metadata and controls
86 lines (67 loc) · 1.77 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: QA
on:
pull_request:
push:
branches:
- main
jobs:
check-scraper-qa:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: scraper/pyproject.toml
architecture: x64
- name: Install dependencies
working-directory: scraper
run: |
pip install -U pip
pip install -e .[lint,check,scripts,test]
- name: Check black formatting
working-directory: scraper
run: inv lint-black
- name: Check ruff
working-directory: scraper
run: inv lint-ruff
- name: Check pyright
working-directory: scraper
run: inv check-pyright
check-zimui-qa:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version-file: 'ui/package.json'
- name: Install JS dependencies
working-directory: ui
run: |
npm ci
- name: Check prettier
working-directory: ui
run: |
npm run format-check
- name: Check eslint
working-directory: ui
run: |
npm run lint-check
check-i18n:
runs-on: ubuntu-24.04
steps:
- name: Retrieve source code
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: scraper/pyproject.toml
architecture: x64
- name: Install dependencies
working-directory: scraper
run: |
pip install -U pip
pip install -e .
- name: Validate i18n translations
run: gutenberg2zim-validate-i18n