Skip to content

Commit 4915377

Browse files
authored
🏎️ make: Fix prettier installation race (#463)
Targets `docs`, `learn` and `labs` all use prettier which gets installed with npx --prefix $(NODEPREFIX) -y prettier # ... Occasionally this seems to fail on CI when run concurrently. Fix by adding an explicit dependency and prettier installation and a `.WAIT`. Pull-request: #463
1 parent 2fda484 commit 4915377

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ lint: lint-go lint-sh lint-node check-fmt-evy conform
2121
## Full clean build and up-to-date checks as run on CI for local execution
2222
ci: check-uptodate .WAIT all
2323

24-
check-uptodate: clean .WAIT tidy fmt doc docs learn lab
24+
check-uptodate: clean .WAIT install-npm-deps .WAIT tidy fmt doc docs learn lab
2525
test -z "$$(git status --porcelain)" || { git status; false; }
2626

2727
## Remove generated files

0 commit comments

Comments
 (0)