Skip to content

chore: add eclexiaiser.toml energy-cost manifest #109

chore: add eclexiaiser.toml energy-cost manifest

chore: add eclexiaiser.toml energy-cost manifest #109

# SPDX-License-Identifier: PMPL-1.0-or-later
permissions:
contents: read
name: NPM/Bun Blocker
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- 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"