[AAE-46514] - Migrating to Pnpm to increase safety

This commit is contained in:
VitoAlbano
2026-06-04 09:26:32 +01:00
parent eab5abb507
commit f8f518a87e
22 changed files with 21200 additions and 39228 deletions
+5 -6
View File
@@ -33,7 +33,6 @@ concurrency:
env:
GH_COMMIT: ${{ github.sha }}
NODE_OPTIONS: "--max-old-space-size=5120"
ADF_SKIP_SECURITY_CHECK: 1
jobs:
pre-checks:
@@ -177,11 +176,11 @@ jobs:
cache-suffix: setup
- name: Install dependencies
if: ${{ steps.setup-env.outputs.node-modules-cache-hit != 'true' }}
run: npm ci
run: pnpm install --frozen-lockfile
- name: Bundle
run: |
npm run bundle:js-api
npm run bundle:cli
pnpm run bundle:js-api
pnpm run bundle:cli
- name: Save nx cache
if: ${{ success() }}
uses: ./.github/actions/save-nx-cache
@@ -206,7 +205,7 @@ jobs:
full-setup: 'false'
- name: Install dependencies
if: ${{ steps.setup-env.outputs.node-modules-cache-hit != 'true' }}
run: npm ci
run: pnpm install --frozen-lockfile
- name: Run lint
env:
BASE_REF: ${{ github.base_ref || 'develop' }}
@@ -242,7 +241,7 @@ jobs:
full-setup: 'false'
- name: Install dependencies
if: ${{ steps.setup-env.outputs.node-modules-cache-hit != 'true' }}
run: npm ci
run: pnpm install --frozen-lockfile
- name: Build Storybook
env:
BASE_REF: ${{ github.base_ref || 'develop' }}