Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

logic: Setting cache: 'pnpm' before pnpm is installed (line 25-28) creates a logical dependency issue. The cache setup may fail or be ignored since pnpm isn't available yet.


- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10

- name: Install deps
run: pnpm install --frozen-lockfile
Expand Down