PunimTag Web Application - Major Feature Release #1

Open
tanyar09 wants to merge 106 commits from dev into master
Showing only changes of commit 29c8a27e01 - Show all commits

View File

@ -104,7 +104,7 @@ jobs:
- name: Run ESLint (admin-frontend)
run: |
cd admin-frontend
npm run lint || true
npm run lint
continue-on-error: true
- name: Install viewer-frontend dependencies
@ -121,7 +121,7 @@ jobs:
- name: Type check (viewer-frontend)
run: |
cd viewer-frontend
npm run type-check || true
npm run type-check
continue-on-error: true
python-lint:
@ -146,12 +146,12 @@ jobs:
- name: Check Python syntax
run: |
find backend -name "*.py" -exec python -m py_compile {} \; || true
find backend -name "*.py" -exec python -m py_compile {} \;
continue-on-error: true
- name: Run flake8
run: |
flake8 backend --max-line-length=100 --ignore=E501,W503 || true
flake8 backend --max-line-length=100 --ignore=E501,W503
continue-on-error: true
test-backend: