Skip to content

Commit

Permalink
build: always run npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
falkoschumann committed Apr 12, 2024
1 parent 743a305 commit 6b47f7d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,12 @@ build:
@if [ -n "$(CI)" ] ; then \
echo "CI detected, run npm ci"; \
npm ci; \
elif [ ! -d "node_modules" ] ; then \
else \
npm install; \
fi
npm run build --workspaces --if-present

.PHONY: all clean distclean dist check start dev \
test unit-tests integration-tests e2e-tests e2e watch coverage \
build

0 comments on commit 6b47f7d

Please sign in to comment.