From d6fbe5f8475ac949d2ca658b2a9afd08929f66d2 Mon Sep 17 00:00:00 2001 From: Matsu Date: Tue, 14 Apr 2026 11:44:48 +0300 Subject: [PATCH] ci: Run lint:styles as a part of reusable linting workflow (#28449) --- .github/workflows/test-linting-reusable.yml | 2 +- package.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-linting-reusable.yml b/.github/workflows/test-linting-reusable.yml index 77e29673ef1..73bbe42cb0a 100644 --- a/.github/workflows/test-linting-reusable.yml +++ b/.github/workflows/test-linting-reusable.yml @@ -29,5 +29,5 @@ jobs: - name: Build and Test uses: ./.github/actions/setup-nodejs with: - build-command: pnpm lint + build-command: pnpm lint:ci node-version: ${{ inputs.nodeVersion }} diff --git a/package.json b/package.json index 5d31147b0c6..2f4edfd36e9 100644 --- a/package.json +++ b/package.json @@ -34,6 +34,7 @@ "lint:styles:fix": "turbo run lint:styles:fix", "lint:affected": "turbo run lint --affected", "lint:fix": "turbo run lint:fix", + "lint:ci": "turbo run lint lint:styles", "optimize-svg": "find ./packages -name '*.svg' ! -name 'pipedrive.svg' -print0 | xargs -0 -P16 -L20 npx svgo", "generate:third-party-licenses": "node scripts/generate-third-party-licenses.mjs", "setup-backend-module": "node scripts/ensure-zx.mjs && zx scripts/backend-module/setup.mjs",