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

Commit

Permalink
add corepack on actions
Browse files Browse the repository at this point in the history
  • Loading branch information
andrefelipeschulle committed Jan 8, 2024
1 parent 2fa3f8d commit 46ff574
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
- name: NodeJs Environment
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- name: Install Packages
run: pnpm install --frozen-lockfile
run: corepack enable && pnpm install --frozen-lockfile

- name: Build Packages
run: pnpm run build
Expand All @@ -49,10 +49,10 @@ jobs:
- name: NodeJs Environment
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- name: Install Packages
run: pnpm install --frozen-lockfile
run: corepack enable && pnpm install --frozen-lockfile

- name: Build Packages
run: pnpm run build
Expand Down

0 comments on commit 46ff574

Please sign in to comment.