Skip to content

Commit 8355566

Browse files
committed
chore(ci): update dev-build process to use pnpm
1 parent baf15e4 commit 8355566

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/dev-build.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ jobs:
1111
steps:
1212
- name: Checkout Code
1313
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
14+
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0
15+
with:
16+
version: 8
1417
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
1518
with:
1619
node-version-file: './package.json'
17-
- name: Install root dependencies
18-
run: npm ci
19-
shell: bash
20+
cache: 'pnpm'
2021
- name: Install Dependencies
21-
run: npx lerna bootstrap --ignore-scripts -- --legacy-peer-deps
22+
run: pnpm install
2223
shell: bash
2324
- name: Prepare NPM Token
2425
run: echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc

0 commit comments

Comments
 (0)