Skip to content

build(deps): bump actions/github-script from 7.0.1 to 8.0.0 #43

build(deps): bump actions/github-script from 7.0.1 to 8.0.0

build(deps): bump actions/github-script from 7.0.1 to 8.0.0 #43

# SPDX-License-Identifier: PMPL-1.0
name: NPM/Bun Blocker
on: [push, pull_request]
permissions: read-all
jobs:
check:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- 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"