Skip to content

Commit 0624383

Browse files
committed
working dir
1 parent 0467c4d commit 0624383

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/actions/pnpm-install/action.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ inputs:
1616
install-args:
1717
description: "Additional args supplied to 'pnpm install'"
1818
required: false
19+
working-directory:
20+
description: "Working directory to run the command in"
21+
required: false
22+
default: ./typescript
1923

2024
runs:
2125
using: "composite"
@@ -28,7 +32,7 @@ runs:
2832
echo "PNPM version: ${{ inputs.pnpm-version }}"
2933
echo "Skip install: ${{ inputs.skip-install }}"
3034
echo "Install args: ${{ inputs.install-args }}"
31-
35+
echo "Working directory: ${{ inputs.working-directory }}"
3236
- uses: actions/checkout@v4
3337

3438
- uses: pnpm/action-setup@v4
@@ -63,4 +67,5 @@ runs:
6367
- name: Install dependencies
6468
shell: bash
6569
if: inputs.skip-install == 'false'
70+
working-directory: ${{ inputs.working-directory }}
6671
run: pnpm install --frozen-lockfile --prefer-offline ${{ inputs.install-args }}

0 commit comments

Comments
 (0)