Skip to content
Open
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
16 changes: 15 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,21 @@ jobs:
with:
main-branch-name: main
- name: Run Checks
run: pnpm run build && pnpm run test && pnpm run test:sherif
run: pnpm run build && pnpm run test
- name: Check dependency versions
run: |
if ! pnpm run test:sherif; then
echo ""
echo "=========================================="
echo "❌ Sherif found dependency version mismatches"
echo ""
echo "To fix this locally, run:"
echo " pnpm exec sherif --fix -i zod"
echo ""
echo "Then commit the changes to package.json files."
echo "=========================================="
exit 1
fi
preview:
name: Preview
runs-on: ubuntu-latest
Expand Down
Loading