Migrate package management from npm to pnpm.

Standardize local and CI workflows on pnpm 11.0.8, replace npm commands in docs/config, and swap lockfiles for reproducible installs.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-08 18:46:55 +02:00
parent 183e10b75b
commit 7a5c1ec637
8 changed files with 8213 additions and 12293 deletions
+9 -4
View File
@@ -27,13 +27,18 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache: pnpm
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 11.0.8
- name: Install dependencies
run: npm ci
run: pnpm install --frozen-lockfile
- name: Lint
run: npm run lint
run: pnpm run lint
- name: Build
run: npm run build
run: pnpm run build