We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 88be2d0 + d896eaf commit bdde149Copy full SHA for bdde149
.github/workflows/dependabot-auto-merge.yml
@@ -23,17 +23,19 @@ jobs:
23
with:
24
ref: ${{ github.event.pull_request.head.ref }}
25
26
+ - name: Set up pnpm
27
+ uses: pnpm/action-setup@v4
28
+ with:
29
+ version: 9
30
+
31
- name: Set up Node.js
32
uses: actions/setup-node@v4
33
34
node-version: "lts/*"
35
cache: pnpm
36
- # Install pnpm explicitly if the action setup doesn't work
- - name: Install pnpm
- run: |
- npm install -g pnpm
- pnpm --version # Confirm installation
37
+ - name: Install dependencies
38
+ run: pnpm install --frozen-lockfile
39
40
- name: Check for lockfile conflicts
41
id: check-conflict
0 commit comments