From 81c84a844f9f49d5641f4031207379fecfa27268 Mon Sep 17 00:00:00 2001 From: Lorenzo Iovino Date: Thu, 8 Jan 2026 16:52:31 +0100 Subject: [PATCH] fix(ci): update pnpm version to 10.x and fix lockfile compatibility - Update GitHub Actions to use pnpm 10 instead of 8 - Remove frozen-lockfile setting from .npmrc - Regenerate pnpm-lock.yaml with lockfileVersion 9.0 - Remove pnpm-workspace.yaml (not needed for single project) --- .github/workflows/main.yml | 2 +- .npmrc | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3c3bb2f..63d12f5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,7 +20,7 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v2 with: - version: 8 + version: 10 - name: Get pnpm store directory id: pnpm-cache diff --git a/.npmrc b/.npmrc index 38b0176..991d089 100644 --- a/.npmrc +++ b/.npmrc @@ -1,5 +1,2 @@ # Build dependencies configuration ignored-built-dependencies=esbuild,sharp - -# Use frozen lockfile by default -frozen-lockfile=true