From dcaaa8ae087b7586b27d7b29b1b6666e541ff572 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Sat, 25 Apr 2026 02:31:55 +0000 Subject: [PATCH] ci: add --ignore-scripts to npm ci to speed up install --- .github/workflows/ci-bundling-trial.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci-bundling-trial.yml b/.github/workflows/ci-bundling-trial.yml index 20af190f0a..871b5ce906 100644 --- a/.github/workflows/ci-bundling-trial.yml +++ b/.github/workflows/ci-bundling-trial.yml @@ -26,7 +26,7 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' - name: 'Build project' run: 'npm run build' @@ -55,7 +55,7 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' - name: 'Build project' run: 'npm run build' @@ -84,7 +84,7 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' - name: 'Build project' run: 'npm run build' @@ -113,7 +113,7 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' - name: 'Build project' run: 'npm run build' @@ -142,7 +142,7 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' - name: 'Build project' run: 'npm run build' @@ -171,7 +171,7 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' - name: 'Build project' run: 'npm run build' @@ -200,7 +200,7 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' - name: 'Build project' run: 'npm run build' @@ -229,7 +229,7 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' - name: 'Build project' run: 'npm run build' @@ -260,7 +260,7 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' - name: 'Build project' run: 'npm run build' @@ -289,7 +289,7 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' - name: 'Build project' run: 'npm run build' @@ -319,7 +319,7 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' - name: 'Build project' run: 'npm run build'