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.
1 parent 628f367 commit 203c95cCopy full SHA for 203c95c
1 file changed
actions/setup-environment/action.yml
@@ -49,6 +49,10 @@ runs:
49
fetch-depth: ${{ inputs.fetch-depth }}
50
token: ${{ inputs.token }}
51
52
+ - name: Setup pnpm
53
+ if: inputs.pnpm == 'true'
54
+ uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
55
+
56
- name: Setup Node.js (with version file)
57
if: inputs.use-version-file == 'true'
58
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
@@ -65,10 +69,6 @@ runs:
65
69
registry-url: ${{ inputs.registry-url }}
66
70
cache: ${{ inputs.pnpm == 'true' && 'pnpm' || 'npm' }}
67
71
68
- - name: Setup pnpm
- if: inputs.pnpm == 'true'
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
-
72
- name: Install dependencies with pnpm
73
if: inputs.pnpm == 'true'
74
shell: bash
0 commit comments