Skip to content

build(deps-dev): bump vite-plus from 0.1.20 to 0.1.21 #66

build(deps-dev): bump vite-plus from 0.1.20 to 0.1.21

build(deps-dev): bump vite-plus from 0.1.20 to 0.1.21 #66

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