Don't ignore lints

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

View file

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