Deployment Failed... Why?

Hi all I just deployed a site with CF Pages and it failed, I've never had that happen before and I don't see an option to view how it failed. This answer: https://community.cloudflare.com/t/deployment-of-fails-with-no-log/578381/4 mentions the CF team might be able to help Thanks for your time
29 Replies
Walshy
Walshy4w ago
what's the deployment id? we can help but not with nothing to lookup :p
Evorage
EvorageOP4w ago
8248643e-425b-4a31-8dfe-6664faae2b34
Walshy
Walshy4w ago
We got an internal error, that's fun - if you try again does it work?
Evorage
EvorageOP4w ago
i'll give it a go now, one sec 0a0cea1b-3f0d-4e0c-af0a-36d49df1069e no luck :/ it fails immediately i'm using direct file upload and specifying a _routes.json file which is experimental
Walshy
Walshy4w ago
_routes.json isn't experimental but let me look hmm
Evorage
EvorageOP4w ago
oh, when I upload files I get this
No description
Walshy
Walshy4w ago
oh haha, that was from when we first added So from the error, it seems like you may have an bad import path in the Worker/Function
Evorage
EvorageOP4w ago
oh, it's a sveltekit project so the imports should have been resolved when it was built but I'll have a manual look, thanks for responding!
Walshy
Walshy4w ago
Yeah, it seems like it's trying to go up a directory, like you may have a import ... from '../<blah>' and that is what is failing (there is no higher dir)
Evorage
EvorageOP4w ago
@Walshy | Workers/Pages I decided to try git integration for funsies and got this:
22:18:47.057 Detected the following tools from environment: [email protected], [email protected]
22:18:47.058 Installing project dependencies: npm clean-install --progress=false
22:18:48.405 npm ERR! code EBADENGINE
22:18:48.406 npm ERR! engine Unsupported engine
22:18:48.406 npm ERR! engine Not compatible with your version of node/npm: @eslint/[email protected]
22:18:48.406 npm ERR! notsup Not compatible with your version of node/npm: @eslint/[email protected]
22:18:48.407 npm ERR! notsup Required: {"node":"^18.18.0 || ^20.9.0 || >=21.1.0"}
22:18:48.407 npm ERR! notsup Actual: {"npm":"9.6.7","node":"v18.17.1"}
22:18:48.408
22:18:48.408 npm ERR! A complete log of this run can be found in: /opt/buildhome/.npm/_logs/2025-03-12T22_18_47_771Z-debug-0.log
22:18:47.057 Detected the following tools from environment: [email protected], [email protected]
22:18:47.058 Installing project dependencies: npm clean-install --progress=false
22:18:48.405 npm ERR! code EBADENGINE
22:18:48.406 npm ERR! engine Unsupported engine
22:18:48.406 npm ERR! engine Not compatible with your version of node/npm: @eslint/[email protected]
22:18:48.406 npm ERR! notsup Not compatible with your version of node/npm: @eslint/[email protected]
22:18:48.407 npm ERR! notsup Required: {"node":"^18.18.0 || ^20.9.0 || >=21.1.0"}
22:18:48.407 npm ERR! notsup Actual: {"npm":"9.6.7","node":"v18.17.1"}
22:18:48.408
22:18:48.408 npm ERR! A complete log of this run can be found in: /opt/buildhome/.npm/_logs/2025-03-12T22_18_47_771Z-debug-0.log
Walshy
Walshy4w ago
needs a higher node, you can do an env var: NODE_VERSION value 22 to use latest node 22
Evorage
EvorageOP4w ago
👍 is there a reason the build process uses node 18.17 by default if it's unsupported?
James
James4w ago
sadly because Pages is essentially abandoned and no longer getting updates. It works, but updates are very unlikely. I'd recommend you pin the version you want such as 22.14.0, as even 22 or 20 will be old versions of 22 and 20 respectively, with security issues.
Evorage
EvorageOP4w ago
oh, that's unfortunate to hear. what's the alternative? workers or wait for the new merged platform to release?
James
James4w ago
Workers Assets + Workers CI is the effective successor, but technically still beta, so your mileage may vary there too for now.
Evorage
EvorageOP4w ago
:/ anyhow thanks for the help hmm, this didn't seem to work both with values of 22 and 22.12.0 in both instances the build logs output npm ERR! notsup Actual: {"npm":"9.6.7","node":"v18.17.1"}
James
James4w ago
did you add it to both your production and preview environment configs? you could also add a .node-version file to the repo if that's easier
Evorage
EvorageOP4w ago
No description
Evorage
EvorageOP4w ago
didn't manage to get that to work (see above image) 🤔 also the .node-version didn't play nice i got this line in the log:
Build environment variables: (none found)
Build environment variables: (none found)
perhaps I'm not setting them correctly although I double checked, their set for both production and preview modes and the log seems to think they're their as well
Walshy
Walshy4w ago
that sounds like workers ci are you in workers ci not pages ci? :thonk:
Evorage
EvorageOP4w ago
definitely a pages project, with the node env var set to 22 and a .node-version file with 22 in, here's a snippet from the latest build log (28beba6d-f1ed-466b-8580-21a50b461ba7):
00:53:27.968 Found wrangler.toml file. Reading build configuration...
00:53:27.976 pages_build_output_dir: .svelte-kit/cloudflare
00:53:27.976 Build environment variables: (none found)
00:53:29.081 Successfully read wrangler.toml file.
00:53:29.144 Detected the following tools from environment: [email protected], [email protected]
00:53:29.145 Installing project dependencies: npm clean-install --progress=false
00:53:30.355 npm ERR! code EBADENGINE
00:53:30.356 npm ERR! engine Unsupported engine
00:53:30.356 npm ERR! engine Not compatible with your version of node/npm: @eslint/[email protected]
00:53:30.356 npm ERR! notsup Not compatible with your version of node/npm: @eslint/[email protected]
00:53:30.357 npm ERR! notsup Required: {"node":"^18.18.0 || ^20.9.0 || >=21.1.0"}
00:53:30.357 npm ERR! notsup Actual: {"npm":"9.6.7","node":"v18.17.1"}
00:53:30.358
00:53:30.358 npm ERR! A complete log of this run can be found in: /opt/buildhome/.npm/_logs/2025-03-13T00_53_29_798Z-debug-0.log
00:53:27.968 Found wrangler.toml file. Reading build configuration...
00:53:27.976 pages_build_output_dir: .svelte-kit/cloudflare
00:53:27.976 Build environment variables: (none found)
00:53:29.081 Successfully read wrangler.toml file.
00:53:29.144 Detected the following tools from environment: [email protected], [email protected]
00:53:29.145 Installing project dependencies: npm clean-install --progress=false
00:53:30.355 npm ERR! code EBADENGINE
00:53:30.356 npm ERR! engine Unsupported engine
00:53:30.356 npm ERR! engine Not compatible with your version of node/npm: @eslint/[email protected]
00:53:30.356 npm ERR! notsup Not compatible with your version of node/npm: @eslint/[email protected]
00:53:30.357 npm ERR! notsup Required: {"node":"^18.18.0 || ^20.9.0 || >=21.1.0"}
00:53:30.357 npm ERR! notsup Actual: {"npm":"9.6.7","node":"v18.17.1"}
00:53:30.358
00:53:30.358 npm ERR! A complete log of this run can be found in: /opt/buildhome/.npm/_logs/2025-03-13T00_53_29_798Z-debug-0.log
Walshy
Walshy4w ago
Oh you're using wrangler.toml Right...
Evorage
EvorageOP4w ago
is that bad? 😳
Walshy
Walshy4w ago
Wrangler.toml becomes the source of truth So setting this in the dash doesn't do any change
Evorage
EvorageOP4w ago
ahhh, i need to specify node version there then?
Walshy
Walshy4w ago
You need to set it in wrangler.toml
Evorage
EvorageOP4w ago
🤦‍♂️ thank you i'll try again
Walshy
Walshy4w ago
There should be a warning in the dash settings saying this But I'm not sure if that got removed during the settings revamped
Evorage
EvorageOP4w ago
I didn't see anything mentioning it

Did you find this page helpful?