File tree 1 file changed +6
-1
lines changed
.github/actions/pnpm-install
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ inputs:
16
16
install-args :
17
17
description : " Additional args supplied to 'pnpm install'"
18
18
required : false
19
+ working-directory :
20
+ description : " Working directory to run the command in"
21
+ required : false
22
+ default : ./typescript
19
23
20
24
runs :
21
25
using : " composite"
28
32
echo "PNPM version: ${{ inputs.pnpm-version }}"
29
33
echo "Skip install: ${{ inputs.skip-install }}"
30
34
echo "Install args: ${{ inputs.install-args }}"
31
-
35
+ echo "Working directory: ${{ inputs.working-directory }}"
32
36
- uses : actions/checkout@v4
33
37
34
38
- uses : pnpm/action-setup@v4
63
67
- name : Install dependencies
64
68
shell : bash
65
69
if : inputs.skip-install == 'false'
70
+ working-directory : ${{ inputs.working-directory }}
66
71
run : pnpm install --frozen-lockfile --prefer-offline ${{ inputs.install-args }}
You can’t perform that action at this time.
0 commit comments