Don't ignore lints

This commit is contained in:
Andras Schmelczer 2025-02-23 10:48:22 +00:00
parent d33d49baa2
commit df0fae74ec
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C

View file

@ -51,7 +51,7 @@ jobs:
cd frontend
npm ci
npm run build
npm run lint || true # ignore linting errors for now
npm run lint
if [[ $(git status --porcelain) ]]; then
git status --porcelain
echo "Failing CI because the working directory is not clean after linting."
@ -61,5 +61,4 @@ jobs:
- name: Test frontend
run: |
cd frontend
npm ci
npm run test