Skip to content

build(deps-dev): bump @types/node from 25.7.0 to 25.8.0 #67

build(deps-dev): bump @types/node from 25.7.0 to 25.8.0

build(deps-dev): bump @types/node from 25.7.0 to 25.8.0 #67

Workflow file for this run

name: Enforce pnpm
on:
pull_request:
jobs:
reject-npm-lockfiles:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Reject npm lockfiles
run: |
if git ls-files | grep -E '(^|/)package-lock\.json$'; then
echo "Remove package-lock.json and use pnpm."
exit 1
fi