Skip to content

chore(deps): bump dtolnay/rust-toolchain from 56f84321dbccf38fb67ce29ab63e4754056677e0 to efa25f7f19611383d5b0ccf2d1c8914531636bf9 #97

chore(deps): bump dtolnay/rust-toolchain from 56f84321dbccf38fb67ce29ab63e4754056677e0 to efa25f7f19611383d5b0ccf2d1c8914531636bf9

chore(deps): bump dtolnay/rust-toolchain from 56f84321dbccf38fb67ce29ab63e4754056677e0 to efa25f7f19611383d5b0ccf2d1c8914531636bf9 #97

Workflow file for this run

# SPDX-License-Identifier: MPL-2.0-or-later
name: NPM/Bun Blocker
on: [push, pull_request]
permissions: read-all
jobs:
check:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- 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"