ci: add npm version check and comment explaining npm dependency

This commit is contained in:
Zoltan Kochan
2026-02-23 13:45:58 +01:00
parent 1b435ff3db
commit 997d3c6736

View File

@@ -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