From 31197b3c3380048c445656be63daf9a9b83e9585 Mon Sep 17 00:00:00 2001 From: Shivangi Shree Date: Tue, 11 Aug 2026 11:17:21 +0530 Subject: [PATCH] [ACS-12460] Address 9 issues --- .github/actions/adf-linking/action.yml | 2 +- .github/actions/publish-libs/action.yml | 2 +- .github/workflows/e2e-playwright-reusable.yml | 4 ++-- .github/workflows/pull-request.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/run-e2e-with-env.yml | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/actions/adf-linking/action.yml b/.github/actions/adf-linking/action.yml index f5fcf7da7..9f27d6f7e 100644 --- a/.github/actions/adf-linking/action.yml +++ b/.github/actions/adf-linking/action.yml @@ -21,7 +21,7 @@ runs: cd ../alfresco-ng2-components if [ -f "pnpm-lock.yaml" ]; then corepack enable pnpm - pnpm add @angular/material + pnpm add @angular/material --ignore-scripts else npm install @angular/material fi diff --git a/.github/actions/publish-libs/action.yml b/.github/actions/publish-libs/action.yml index 640454ef8..a6d14fc60 100644 --- a/.github/actions/publish-libs/action.yml +++ b/.github/actions/publish-libs/action.yml @@ -27,7 +27,7 @@ runs: - name: Build Libraries shell: bash run: | - npm ci + npm ci --ignore-scripts npm run ci:build:many - uses: actions/setup-node@v7 diff --git a/.github/workflows/e2e-playwright-reusable.yml b/.github/workflows/e2e-playwright-reusable.yml index 8e3b4bbd0..1495e3cb0 100644 --- a/.github/workflows/e2e-playwright-reusable.yml +++ b/.github/workflows/e2e-playwright-reusable.yml @@ -45,7 +45,7 @@ jobs: fetch-depth: 2 - uses: ./.github/actions/before-install - - run: npm ci + - run: npm ci --ignore-scripts - name: upload npm logs uses: actions/upload-artifact@v7 if: failure() @@ -146,7 +146,7 @@ jobs: uses: ./.github/actions/before-install - name: Install dependencies - run: npm ci + run: npm ci --ignore-scripts - name: Restore dist cache uses: actions/cache/restore@v6 diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 3a5c62a23..345ec9f2e 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -243,7 +243,7 @@ jobs: uses: ./.github/actions/before-install - name: Install dependencies - run: npm ci + run: npm ci --ignore-scripts - name: Restore dist cache uses: actions/cache/restore@v6 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 904b92e18..ffd472eb6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,7 +61,7 @@ jobs: fetch-depth: 0 - uses: ./.github/actions/setup - - run: npm ci + - run: npm ci --ignore-scripts - run: npm run affected:lint -- --base=origin/develop - run: npm run stylelint @@ -83,7 +83,7 @@ jobs: fetch-depth: 0 - uses: ./.github/actions/before-install - - run: npm ci + - run: npm ci --ignore-scripts - run: npm run affected:test -- --browsers=ChromeHeadless --watch=false $TEST_OPTS --base=origin/develop publish-docker-registry: diff --git a/.github/workflows/run-e2e-with-env.yml b/.github/workflows/run-e2e-with-env.yml index 0cdac2b17..1b3748fd0 100644 --- a/.github/workflows/run-e2e-with-env.yml +++ b/.github/workflows/run-e2e-with-env.yml @@ -44,7 +44,7 @@ jobs: node-version-file: '.nvmrc' cache: 'npm' - uses: ./.github/actions/before-install - - run: npm ci + - run: npm ci --ignore-scripts - run: npm run ci:build -- aca-playwright-shared - run: npm run build -- $BUILD_OPTS @@ -120,7 +120,7 @@ jobs: cache: 'npm' - uses: ./.github/actions/before-install - - run: npm ci + - run: npm ci --ignore-scripts - uses: actions/cache/restore@v6 id: cache