Skip to content

Commit

Permalink
chore(ci): update dev-build process to use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-perkins committed Apr 23, 2024
1 parent baf15e4 commit 8355566
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/dev-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0
with:
version: 8
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version-file: './package.json'
- name: Install root dependencies
run: npm ci
shell: bash
cache: 'pnpm'
- name: Install Dependencies
run: npx lerna bootstrap --ignore-scripts -- --legacy-peer-deps
run: pnpm install
shell: bash
- name: Prepare NPM Token
run: echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc
Expand Down

0 comments on commit 8355566

Please sign in to comment.