From d35fefddd92e2aadc0062794bf12e581f2238dec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9?= Date: Sun, 31 May 2026 19:00:05 +0300 Subject: [PATCH] ci(a11y): bump Pa11y workflow Node 20 -> 22 (cspell@10 engine requirement) The a11y (Pa11y live) PR check failed at "Install root JS deps": root `npm ci` hits EBADENGINE because @cspell/cspell-*@10.0.0 require Node >=22.18.0 while the workflow pinned Node 20. Pre-existing mismatch (cspell ^10 predates this branch and fails identically on main), unrelated to the discipline-guard hook changes. Node 22 satisfies both the repo engines (>=20) and cspell (>=22.18). Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/a11y.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/a11y.yml b/.github/workflows/a11y.yml index abed708f..a5793e22 100644 --- a/.github/workflows/a11y.yml +++ b/.github/workflows/a11y.yml @@ -21,10 +21,10 @@ jobs: extensions: pdo, pdo_pgsql, redis, mbstring, intl, bcmath coverage: none - - name: Setup Node 20 + - name: Setup Node 22 uses: actions/setup-node@v4 with: - node-version: '20' + node-version: '22' cache: 'npm' - name: Install root JS deps