Skip to content

Commit 62f4d6d

Browse files
committed
ci: dedupe lints — keep single lint job in ci.yml; remove redundant lint steps in web-ci.yml
1 parent 063816a commit 62f4d6d

1 file changed

Lines changed: 1 addition & 9 deletions

File tree

.github/workflows/web-ci.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,6 @@ jobs:
1818
run: |
1919
python -m pip install --upgrade pip
2020
pip install -r backend/requirements.txt
21-
- name: Lint
22-
run: |
23-
black --check backend
24-
isort --profile black --check-only backend
25-
flake8 backend
26-
mypy --ignore-missing-imports backend
2721
- name: Test backend
2822
env:
2923
PYTHONPATH: .
@@ -38,12 +32,10 @@ jobs:
3832
- uses: actions/setup-node@v4
3933
with:
4034
node-version: '18'
41-
- name: Install and lint
35+
- name: Install
4236
working-directory: frontend
4337
run: |
4438
npm ci || npm install
45-
npm run lint
46-
npm run type-check
4739
- name: Test
4840
working-directory: frontend
4941
run: npm test -- --coverage --passWithNoTests

0 commit comments

Comments
 (0)