From ef3052beba2cdc613933659f87afc7e2e8b78036 Mon Sep 17 00:00:00 2001 From: Jan Kowalleck Date: Thu, 10 Sep 2026 16:43:14 +0200 Subject: [PATCH] ci: less verbose Signed-off-by: Jan Kowalleck --- .github/workflows/lint_2.x_schemas.yml | 4 ++-- .github/workflows/lint_non-core_schemas.yml | 2 +- .github/workflows/test_1.x_js.yml | 4 ++-- .github/workflows/test_1.x_php.yml | 4 ++-- .github/workflows/test_2.x_js.yml | 2 +- .github/workflows/test_2.x_php.yml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/lint_2.x_schemas.yml b/.github/workflows/lint_2.x_schemas.yml index b6831de76..f983dcb0b 100644 --- a/.github/workflows/lint_2.x_schemas.yml +++ b/.github/workflows/lint_2.x_schemas.yml @@ -83,7 +83,7 @@ jobs: package-manager-cache: false - name: Install linter working-directory: tools/src/main/js/linter - run: npm install + run: npm ci --no-fund --no-audit - name: Lint schemas env: SCHEMA_VERSION: ${{ matrix.schema_version }} @@ -156,7 +156,7 @@ jobs: package-manager-cache: false - name: Install linter working-directory: tools/src/main/js/linter - run: npm install + run: npm ci --no-fund --no-audit - name: Lint schemas env: SCHEMA_VERSION: ${{ matrix.schema_version }} diff --git a/.github/workflows/lint_non-core_schemas.yml b/.github/workflows/lint_non-core_schemas.yml index e9e5693f7..b790b9fe3 100644 --- a/.github/workflows/lint_non-core_schemas.yml +++ b/.github/workflows/lint_non-core_schemas.yml @@ -47,7 +47,7 @@ jobs: package-manager-cache: false - name: Install linter working-directory: tools/src/main/js/linter - run: npm ci + run: npm ci --no-fund --no-audit - name: Lint schemas run: | set -eu diff --git a/.github/workflows/test_1.x_js.yml b/.github/workflows/test_1.x_js.yml index 0478dd828..bde10b7a6 100644 --- a/.github/workflows/test_1.x_js.yml +++ b/.github/workflows/test_1.x_js.yml @@ -36,6 +36,6 @@ jobs: node-version: '24.x' package-manager-cache: false - name: Install Dependencies - run: npm install - - name: Run test + run: npm install --no-fund --no-audit + - name: Run test run: npm test diff --git a/.github/workflows/test_1.x_php.yml b/.github/workflows/test_1.x_php.yml index a3179653a..19dc68251 100644 --- a/.github/workflows/test_1.x_php.yml +++ b/.github/workflows/test_1.x_php.yml @@ -35,7 +35,7 @@ jobs: with: php-version: "8.4" tools: composer:v2 - - name: Install Depenencies - run: composer install + - name: Install Dependencies + run: composer install --no-suggest - name: Run test run: composer run test diff --git a/.github/workflows/test_2.x_js.yml b/.github/workflows/test_2.x_js.yml index 243d5fe04..9ce1b1200 100644 --- a/.github/workflows/test_2.x_js.yml +++ b/.github/workflows/test_2.x_js.yml @@ -49,7 +49,7 @@ jobs: node-version: ${{ env.NODE_VERSION }} package-manager-cache: false - name: Install Dependencies - run: npm i --no-fund --no-audit + run: npm install --no-fund --no-audit - name: Run test env: VALIDATE_BUNDLED: >- diff --git a/.github/workflows/test_2.x_php.yml b/.github/workflows/test_2.x_php.yml index 2206ce7e9..9ed8a29fa 100644 --- a/.github/workflows/test_2.x_php.yml +++ b/.github/workflows/test_2.x_php.yml @@ -49,7 +49,7 @@ jobs: php-version: ${{ env.PHP_VERSION }} tools: composer:v2 - name: Install Dependencies - run: composer install + run: composer install --no-suggest - name: Run test env: SCHEMA_VERSION: ${{ matrix.schema_version }}