From f3cb122a84f43905fa50022ee818a94c06dda307 Mon Sep 17 00:00:00 2001 From: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com> Date: Wed, 29 Jul 2026 15:12:35 +0100 Subject: [PATCH] root: add .nvmrc (#24440) build: add .nvmrc The setup docs tell contributors to install Node.js with nvm, but there was nothing in the repo for it to read, so the version had to be passed by hand on every `nvm install` / `nvm use`. Add an .nvmrc pinning 24, which is the floor declared in package.json's `engines.node` and the version the setup guides name. Running newer than the pin locally is fine: CI resolves `>=24` through setup-node's `node-version-file: package.json` and so tracks the latest satisfying release. Co-authored-by: Playpen Agent <279763771+playpen-agent@users.noreply.github.com> --- .nvmrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 .nvmrc diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000000..a45fd52cc5 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +24