From 39aa9d580860a6fb70b9a1c25a41c7bdea0f0ada Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 25 Nov 2025 11:57:58 +0100 Subject: [PATCH] ci: force latest Node 22 and echo versions before install --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36af97c56..688d7dd07 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,8 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 22.9.0 + node-version: 22 + check-latest: true - name: Setup pnpm uses: pnpm/action-setup@v4 @@ -30,7 +31,11 @@ jobs: - name: Install dependencies env: CI: true - run: pnpm install --frozen-lockfile --ignore-scripts=false + run: | + which node + node -v + pnpm -v + pnpm install --frozen-lockfile --ignore-scripts=false - name: Lint run: pnpm lint