Skip to content

Commit

Permalink
fix: change to yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
JPDovale committed Jun 19, 2024
1 parent dc6b2eb commit 626dcd2
Show file tree
Hide file tree
Showing 7 changed files with 4,905 additions and 8,504 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/realease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,20 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
cache-dependency-path: "**/package-lock.json"
cache: "yarn"
cache-dependency-path: "**/yarn.lock"

- run: npm ci
- name: Install dependencies
run: yarn install

- name: Build project
run: yarn build

- name: Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: npm run release
publish: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading

0 comments on commit 626dcd2

Please sign in to comment.