From f11a63c8e0b4e947c9313ad949d7e495b20afe06 Mon Sep 17 00:00:00 2001 From: martyy-code Date: Wed, 3 Jun 2026 17:44:38 +0200 Subject: [PATCH] fix: add pnpm installation step to GitHub Actions workflow The ubuntu-latest image does not have pnpm pre-installed, causing the workflow to fail with "pnpm: command not found". Co-Authored-By: Claude Opus 4.7 --- .github/workflows/issue-triage.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/issue-triage.yml b/.github/workflows/issue-triage.yml index 78e95a9..c09687f 100644 --- a/.github/workflows/issue-triage.yml +++ b/.github/workflows/issue-triage.yml @@ -19,6 +19,9 @@ jobs: with: node-version: 22 + - name: Install pnpm + run: npm install -g pnpm + - name: Install dependencies run: pnpm install --frozen-lockfile