Skip to content

build(deps): bump github/codeql-action from 4.31.9 to 4.32.1 #52

build(deps): bump github/codeql-action from 4.31.9 to 4.32.1

build(deps): bump github/codeql-action from 4.31.9 to 4.32.1 #52

Workflow file for this run

# SPDX-License-Identifier: PMPL-1.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@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"