From 74fea9c176e45d56c35ed6e84b150c10d240438d Mon Sep 17 00:00:00 2001 From: 777genius Date: Sat, 23 May 2026 01:14:49 +0300 Subject: [PATCH] fix(ci): restore pnpm node-gyp executable bit --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a8e6bdd..642cf99b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,6 +65,9 @@ jobs: node-version: 22 cache: pnpm + - name: Restore pnpm node-gyp executable bit + run: find "$(dirname "$(command -v pnpm)")/store" -path '*/node-gyp/gyp/gyp_main.py' -exec chmod +x {} \; 2>/dev/null || true + - name: Install dependencies run: pnpm install --frozen-lockfile @@ -95,6 +98,9 @@ jobs: node-version: 22 cache: pnpm + - name: Restore pnpm node-gyp executable bit + run: find "$(dirname "$(command -v pnpm)")/store" -path '*/node-gyp/gyp/gyp_main.py' -exec chmod +x {} \; 2>/dev/null || true + - name: Install dependencies run: pnpm install --frozen-lockfile