We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baf15e4 commit 8355566Copy full SHA for 8355566
.github/workflows/dev-build.yml
@@ -11,14 +11,15 @@ jobs:
11
steps:
12
- name: Checkout Code
13
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
14
+ - uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0
15
+ with:
16
+ version: 8
17
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
18
with:
19
node-version-file: './package.json'
- - name: Install root dependencies
- run: npm ci
- shell: bash
20
+ cache: 'pnpm'
21
- name: Install Dependencies
- run: npx lerna bootstrap --ignore-scripts -- --legacy-peer-deps
22
+ run: pnpm install
23
shell: bash
24
- name: Prepare NPM Token
25
run: echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc
0 commit comments