Add build and dist/ freshness check to CI

This commit is contained in:
Jarek Potiuk
2026-04-09 17:56:12 +03:00
committed by antoine.vinot
parent c8357220fa
commit a100e88166
+11
View File
@@ -27,5 +27,16 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Check dist/ is up-to-date
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "::error::dist/ is out of date. Run 'npm run build' and commit the changes."
git status --short
exit 1
fi
- name: Run tests
run: npm test