Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
fix npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzolewis committed May 19, 2024
1 parent f790694 commit a67f99b
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,20 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v3

- name: Setup Node.js 20
- name: Install pnpm
uses: pnpm/action-setup@v2.2.4
with:
version: 9.1.1

- name: Install Node.js
uses: actions/setup-node@v3
with:
cache: pnpm
node-version: 18
registry-url: "https://registry.npmjs.org"

- name: Install Dependencies
run: pnpm i
- name: Install dependencies
run: pnpm install

- name: Create Release Pull Request
uses: changesets/action@v1
Expand Down

0 comments on commit a67f99b

Please sign in to comment.