Skip to content

chore: Update platform types #2391

chore: Update platform types

chore: Update platform types #2391

Workflow file for this run

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