From a1fab23439da7bba2eaf3db66eccee4578d8307f Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 25 Nov 2025 05:16:08 +0100 Subject: [PATCH] ci: pin Node to 22.11.0 and print version --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b50a3bdc4..8fae0fac1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,9 +19,12 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 22 + node-version: '22.11.0' cache: pnpm + - name: Node version + run: node -v + - name: Install dependencies env: PNPM_HOME: ~/.pnpm