Skip to content

Commit e0300a6

Browse files
CCM-16572: fixing pnpm-lock for pnpm migration
1 parent 9816bbe commit e0300a6

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/actions/build-docs/action.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ inputs:
88
description: "Node.js version"
99
required: false
1010
default: "22"
11+
pnpm_filters:
12+
description: "Extra pnpm workspace filters passed to pnpm install"
13+
required: false
14+
default: "--filter ./docs"
1115
runs:
1216
using: "composite"
1317
steps:
@@ -21,7 +25,7 @@ runs:
2125
with:
2226
node-version: ${{ inputs.node_version }}
2327
- name: Install pnpm dependencies
24-
run: pnpm install --frozen-lockfile --filter docs
28+
run: pnpm install --frozen-lockfile ${{ inputs.pnpm_filters }}
2529
shell: bash
2630
- name: Setup Ruby
2731
uses: ruby/setup-ruby@4eb9f110bac952a8b68ecf92e3b5c7a987594ba6 # v1.292.0

0 commit comments

Comments
 (0)