Skip to content

Commit

Permalink
refactor: use pnpm in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jonambas committed Jun 4, 2024
1 parent 82f209b commit c0df89a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,8 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build:packages
- uses: pnpm/action-setup@v4
with:
version: 9.1
- run: pnpm i
- run: pnpm build:packages
7 changes: 5 additions & 2 deletions .github/workflows/libra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,8 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build:libra
- uses: pnpm/action-setup@v4
with:
version: 9.1
- run: pnpm i
- run: pnpm build:libra

0 comments on commit c0df89a

Please sign in to comment.