fix(ci): bump Node to 22.13.0 (pnpm@11 minimum)

The first CI run failed at `vp install`: pnpm@11.1.2 requires Node >=22.13, but
the workflow pinned 22.12.0 (the old engines floor). Pin 22.13.0 — the real
lowest Node the toolchain supports — and correct engines.node to >=22.13.0 so
the declared engine matches what pnpm actually needs.
This commit is contained in:
Yunfei He
2026-05-29 14:41:22 +08:00
parent b8ad628a6e
commit 1318f86888
2 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
"vite-plus": "catalog:"
},
"engines": {
"node": ">=22.12.0"
"node": ">=22.13.0"
},
"packageManager": "pnpm@11.1.2"
}