Skip to content

Commit be11d78

Browse files
committed
fix(ci): reorder pnpm setup after Node.js installation
1 parent 46bfcc3 commit be11d78

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/actions/setup/action.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ inputs:
1212
runs:
1313
using: "composite"
1414
steps:
15-
- uses: pnpm/action-setup@v4
16-
name: Install pnpm
17-
with:
18-
version: ${{ inputs.pnpm-version }}
19-
run_install: true
20-
2115
- name: Install Node.js
2216
uses: actions/setup-node@v4
2317
with:
2418
node-version: ${{ inputs.node-version }}
2519
cache: 'pnpm'
2620

21+
- uses: pnpm/action-setup@v4
22+
name: Install pnpm
23+
with:
24+
version: ${{ inputs.pnpm-version }}
25+
run_install: true
26+
2727
# Build the SDK
2828
- name: Project build
2929
shell: bash

0 commit comments

Comments
 (0)