From 36fb2f02b894e7ddbfe905fee50a3e3aae415af5 Mon Sep 17 00:00:00 2001 From: Zoltan Kochan Date: Wed, 4 Mar 2026 22:46:53 +0100 Subject: [PATCH] ci: increase timeout on node.js install --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c49d3ba3a3..75d7f73eac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,8 +23,8 @@ jobs: with: standalone: true - name: Setup Node - run: pnpm env use -g 24.6.0 - timeout-minutes: 1 + run: pnpm runtime -g set node 24.6.0 + timeout-minutes: 2 - name: pnpm install run: pnpm install timeout-minutes: 3 @@ -79,8 +79,8 @@ jobs: with: standalone: false - name: Setup Node - run: pnpm env use -g ${{ join(matrix.node, '.') }} - timeout-minutes: 1 + run: pnpm runtime -g set node ${{ join(matrix.node, '.') }} + timeout-minutes: 2 # npm is needed for preparing git-hosted dependencies (e.g. in dlx tests) - name: Verify npm run: npm --version