Can I configure `ember build` to install dependencies via `npm ci` instead of `npm install`?`?

I have found in the documentation that I can configure my project to use yarn instead of npm. This would sort of fix my issue, since yarn install is equivalent to npm ci. Nonetheless, I would like to know if there is a way to tell ember to run npm ci instead of npm install

Why would someone want to install different dependencies every time you deploy the same commit? I would also appreciate if someone knows why ember build default to npm install instead of npm ci, maybe there is something for me to learn :slight_smile:

Hmm, I’m not sure I understand what you mean. ember build shouldn’t be running any npm (or yarn command.

Hi @rwjblue! I am very sorry. You are completely right, and I was completely wrong. ember should not and does not run any npm command. It is a bug on our side which was causing the issues.

I apologize. Thank you for your answer, though!