Skip to content

Commit

Permalink
fix(ci): reorder pnpm setup after Node.js installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Convly committed Dec 23, 2024
1 parent 46bfcc3 commit be11d78
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ inputs:
runs:
using: "composite"
steps:
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: ${{ inputs.pnpm-version }}
run_install: true

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ inputs.node-version }}
cache: 'pnpm'

- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: ${{ inputs.pnpm-version }}
run_install: true

# Build the SDK
- name: Project build
shell: bash
Expand Down

0 comments on commit be11d78

Please sign in to comment.