Skip to content

fix: green dune runtest — correct vscode-off-by-default e2e false positive (Refs #116, #117) #423

fix: green dune runtest — correct vscode-off-by-default e2e false positive (Refs #116, #117)

fix: green dune runtest — correct vscode-off-by-default e2e false positive (Refs #116, #117) #423

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@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"