Skip to content

chore(deps): Bump the actions group with 3 updates #4

chore(deps): Bump the actions group with 3 updates

chore(deps): Bump the actions group with 3 updates #4

Workflow file for this run

name: NPM/Bun Blocker
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Block npm/bun
run: |
if [ -f "package-lock.json" ] || [ -f "bun.lockb" ] || [ -f ".npmrc" ]; then
echo "❌ npm/bun artifacts detected. Use Deno instead."
exit 1
fi
echo "✅ No npm/bun violations"