From 88961c6fd3e1cf5894b137b29a30e5c610369597 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 30 Jun 2026 13:19:19 +0200 Subject: [PATCH] :wrench: Add recursive install to plugins test workflow --- .github/workflows/tests-plugins.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/tests-plugins.yml b/.github/workflows/tests-plugins.yml index 5cc161461c..1415c73db7 100644 --- a/.github/workflows/tests-plugins.yml +++ b/.github/workflows/tests-plugins.yml @@ -40,19 +40,13 @@ jobs: steps: - uses: actions/checkout@v6 - - name: Setup Node - id: setup-node - uses: actions/setup-node@v6 - with: - node-version-file: .nvmrc - - name: Install deps working-directory: ./plugins shell: bash run: | corepack enable; corepack install; - pnpm install; + pnpm install -r; - name: Run Lint working-directory: ./plugins