Because of my dependency to pdfjs-dist I've set Node 22 as a minimum version for my Next.js application. Using GitHub workflows and the available actions, my CI fails when reaching the Vercel steps because of the Node version requirement.
Vercel CLI 37.3.0Error: Found invalid Node.js Version: ">=22.7.0". Please set "engines": { "node": "20.x" } in your `package.json` file to use Node.js 20.I confirmed that the Node version that is pulled fulfills the query from package.json. I see no mention of Node 22 being unsupported specifically. Is this expected behavior?
