chore(Makefile): change npm install command to npm ci for frontend installation to ensure reproducible builds

This commit is contained in:
anovazzi1 2023-08-15 15:39:33 -03:00
commit b528ae86fd

View file

@ -32,7 +32,7 @@ lint:
poetry run ruff . --fix
install_frontend:
cd src/frontend && rm -rf node_modules && npm install
cd src/frontend && npm ci
run_frontend:
cd src/frontend && npm start