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

Commit

Permalink
fix(ci): correção no CI
Browse files Browse the repository at this point in the history
  • Loading branch information
andrefelipeschulle committed Jun 28, 2024
1 parent a0734a5 commit 1feee77
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
node-version: 20

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

- name: Test Package
run: pnpm run test

- name: Build Package
run: pnpm run build

Expand All @@ -53,13 +53,13 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20

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

- name: Test Package
run: pnpm run test

- name: Build Package
run: pnpm run build

Expand All @@ -68,4 +68,3 @@ jobs:

- name: Publish Packages on NPM
run: cd dist && npm publish --provenance --access public

0 comments on commit 1feee77

Please sign in to comment.