Update reconcile to 0.8.0

This commit is contained in:
Andras Schmelczer 2025-12-06 22:20:31 +00:00
parent 2885026d2f
commit aca1ca50a4
8 changed files with 36 additions and 30 deletions

View file

@ -26,7 +26,12 @@ cargo machete --with-metadata
echo "Running checks in frontend"
cd ../frontend
npm ci
if [[ "$FIX_MODE" == true ]]; then
npm install
else
npm ci
fi
npm run build
npm run test
npm run lint
@ -37,7 +42,6 @@ if [[ "$FIX_MODE" == false ]] && [[ $(git status --porcelain) ]]; then
exit 1
fi
cd ..
if [[ "$FIX_MODE" == true ]]; then
@ -45,4 +49,3 @@ if [[ "$FIX_MODE" == true ]]; then
else
echo "Success"
fi