From 7bf06ed3f564b83c44c8fbc25088bc2756ec3c92 Mon Sep 17 00:00:00 2001 From: DevAstro Date: Tue, 24 Jun 2025 21:54:01 +0100 Subject: [PATCH] Add PNPM install command to PR comment workflow (#1549) Included a PNPM add command alongside npm and yarn in the PR comment workflow to support projects using PNPM for dependency management. --- .github/workflows/pr-comment.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pr-comment.yml b/.github/workflows/pr-comment.yml index 6fea527..95c5402 100644 --- a/.github/workflows/pr-comment.yml +++ b/.github/workflows/pr-comment.yml @@ -33,4 +33,6 @@ jobs: npm install @whiskeysockets/baileys@${{ github.event.pull_request.head.repo.full_name }}#${{ github.event.pull_request.head.ref }} # YARN v2 yarn add @whiskeysockets/baileys@${{ github.event.pull_request.head.repo.full_name }}#${{ github.event.pull_request.head.ref }} + # PNPM + pnpm add @whiskeysockets/baileys@${{ github.event.pull_request.head.repo.full_name }}#${{ github.event.pull_request.head.ref }} ```