Skip to content

Commit

Permalink
try to fix pnpm global bin dir
Browse files Browse the repository at this point in the history
  • Loading branch information
smouillour committed Nov 6, 2023
1 parent 984a37e commit 8ec1f82
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/setup-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ runs:

- name: Setup PNPM
shell: bash
run: pnpm config set global-bin-dir ~/.local/share/pnpm
run: |
mkdir ~/.local/share/pnpm
pnpm config set global-bin-dir ~/.local/share/pnpm
- name: Get pnpm cache directory path
id: pnpm-cache-dir-path
Expand Down

0 comments on commit 8ec1f82

Please sign in to comment.