Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌱 Add step to validate the dist folder content #84

Merged
merged 3 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/code_health.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,16 @@ jobs:
run: npm run test:coverage

- name: Build
run: npm run build
run: npm run build

- name: Check dist directory
run: |
FILES=$(git status -s dist/)
if [ -n "$FILES" ]; then
echo "You need to include the changes in the dist folder, execute: npm run build and commit the changes in the dist folder"
echo "Uncommitted files:"
echo "$FILES"
echo "Diff content:"
git diff dist/
exit 1
fi
Loading
Loading