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.
This commit is contained in:
DevAstro
2025-06-24 21:54:01 +01:00
committed by GitHub
parent 83a6956b44
commit 7bf06ed3f5

View File

@@ -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 }}
```