Compare commits

..
+14 -1
View File
@@ -15,4 +15,17 @@ jobs:
steps:
- uses: actions/checkout@v5
- run: make frontend-install-dependencies
- run: make frontend-build
- run: make frontend-build
- name: Check for uncommitted changes
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "Error: There are uncommitted changes after running 'make frontend-build'"
echo "Please run 'make frontend-build' locally and commit the changes"
echo ""
echo "Changed files:"
git diff --name-only
echo ""
git status
git diff
exit 1
fi