From 997d3c6736faea080651dcc6e54e913fd8b3db7d Mon Sep 17 00:00:00 2001 From: Zoltan Kochan Date: Mon, 23 Feb 2026 13:45:58 +0100 Subject: [PATCH] ci: add npm version check and comment explaining npm dependency --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f4dfa5272..809961b869 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -81,9 +81,12 @@ jobs: - name: Setup Node run: pnpm env use -g ${{ join(matrix.node, '.') }} timeout-minutes: 1 + # npm is needed for preparing git-hosted dependencies (e.g. in dlx tests) - name: Install npm@8 run: pnpm add --global npm@8 timeout-minutes: 1 + - name: Verify npm + run: npm --version - name: pnpm install run: pnpm install timeout-minutes: 3