From 9707cf3f4d7823e63ccd3b4f3dc0b3769c93bfa2 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Sat, 25 Apr 2026 02:40:01 +0000 Subject: [PATCH] ci: use ignore-scripts and explicit generate in all jobs --- .github/workflows/ci-bundling-trial.yml | 55 ++++++++++++++++++++----- 1 file changed, 44 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci-bundling-trial.yml b/.github/workflows/ci-bundling-trial.yml index 20af190f0a..65b000ba2d 100644 --- a/.github/workflows/ci-bundling-trial.yml +++ b/.github/workflows/ci-bundling-trial.yml @@ -26,7 +26,10 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' + + - name: 'Generate commit info' + run: 'npm run generate' - name: 'Build project' run: 'npm run build' @@ -55,7 +58,10 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' + + - name: 'Generate commit info' + run: 'npm run generate' - name: 'Build project' run: 'npm run build' @@ -84,7 +90,10 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' + + - name: 'Generate commit info' + run: 'npm run generate' - name: 'Build project' run: 'npm run build' @@ -113,7 +122,10 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' + + - name: 'Generate commit info' + run: 'npm run generate' - name: 'Build project' run: 'npm run build' @@ -142,7 +154,10 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' + + - name: 'Generate commit info' + run: 'npm run generate' - name: 'Build project' run: 'npm run build' @@ -171,7 +186,10 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' + + - name: 'Generate commit info' + run: 'npm run generate' - name: 'Build project' run: 'npm run build' @@ -200,7 +218,10 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' + + - name: 'Generate commit info' + run: 'npm run generate' - name: 'Build project' run: 'npm run build' @@ -229,7 +250,10 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' + + - name: 'Generate commit info' + run: 'npm run generate' - name: 'Build project' run: 'npm run build' @@ -260,7 +284,10 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' + + - name: 'Generate commit info' + run: 'npm run generate' - name: 'Build project' run: 'npm run build' @@ -289,7 +316,10 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' + + - name: 'Generate commit info' + run: 'npm run generate' - name: 'Build project' run: 'npm run build' @@ -319,7 +349,10 @@ jobs: cache: 'npm' - name: 'Install dependencies' - run: 'npm ci' + run: 'npm ci --ignore-scripts' + + - name: 'Generate commit info' + run: 'npm run generate' - name: 'Build project' run: 'npm run build'