Hi @question_asker,
I presume that you have a package.json in your function folder. Note that the buildbot won’t automatically npm i
or yarn install
. You’ll need to do that as part of your build command. Could you try something like cp function/db && npm i && cd ../.. && npm run build
and see if that helps? (You’d probably want to extrapolate that command to fit your needs)