Improve comments

This commit is contained in:
Andras Schmelczer 2025-08-25 16:44:02 +01:00
parent 02ec098283
commit c462994af9
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
3 changed files with 9 additions and 5 deletions

View file

@ -9,19 +9,19 @@ cargo fmt --all -- --check
cargo machete
cargo test --verbose
echo "Running checks in frontend"
cd ../frontend
npm ci
npm run build
npm run lint
npm run test
if [[ $(git status --porcelain) ]]; then
git status --porcelain
echo "Failing CI because the working directory is not clean after linting"
exit 1
fi
npm run test
echo "Finished"
echo "Success"
cd ..