Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "20"
node-version: "24"

- name: Check docs index, links, and conformance aliases
run: node scripts/check-docs.mjs
Expand Down
3 changes: 2 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ whichever agent you are:
warns when the installed version differs, and fails on findings; CI
installs the same lock through `jdx/mise-action`
- [`svu`](https://github.com/caarlos0/svu) only for `make bump`
- Node 20+ only for `node scripts/check-docs.mjs` (zero dependencies)
- Node 24+ only for `node scripts/check-docs.mjs` (zero dependencies);
the 20.x line reached end-of-life on 2026-04-30, and 24 is the Active LTS

### Commands

Expand Down
2 changes: 1 addition & 1 deletion scripts/check-docs.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// resolution, and release-config workflow/docs consistency — thresholds in
// .coverage-thresholds.json (std ADR-0001, pattern from frostyard/core
// ADR-0029; the never_relax guardrail follows core ADR-0019). Zero
// dependencies; Node >= 20. Run: node scripts/check-docs.mjs
// dependencies; Node >= 24. Run: node scripts/check-docs.mjs
import { readFileSync, readdirSync, lstatSync, existsSync, realpathSync } from "node:fs";
import { join, dirname, resolve, relative, sep } from "node:path";

Expand Down