Skip to content

ci(deps): bump actions/checkout from 6.0.2 to 6.0.3 #1819

ci(deps): bump actions/checkout from 6.0.2 to 6.0.3

ci(deps): bump actions/checkout from 6.0.2 to 6.0.3 #1819

Workflow file for this run

name: Enforce pnpm
on:
pull_request:
push:
jobs:
reject-npm-lockfile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- 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