From 7e5915b3c39d7382421d0a59693fe987cbe90035 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=A4der?= Date: Tue, 19 Nov 2024 15:16:35 +0100 Subject: [PATCH] Fix ci build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Mäder --- .github/workflows/ci-cd.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 71bcdb7161269..5baee06382b6d 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -82,11 +82,6 @@ jobs: NODE_OPTIONS: --max_old_space_size=4096 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # https://github.com/microsoft/vscode-ripgrep/issues/9 - - name: Download Plugins - if: runner.os == 'Linux' - shell: bash - run: | - npm run download:plugins --rate-limit 3 - name: Build shell: bash @@ -97,6 +92,12 @@ jobs: NODE_OPTIONS: --max_old_space_size=4096 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # https://github.com/microsoft/vscode-ripgrep/issues/9 + - name: Download Plugins + if: runner.os == 'Linux' + shell: bash + run: | + npm run download:plugins --rate-limit 3 + - name: Test (headless) if: matrix.tests != 'skip' shell: bash