From fc3956e770c061b57838895191db68673b47aa5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Fri, 28 Jan 2022 16:53:29 +0100 Subject: [PATCH] fix yarn install in CI lint step --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1eb10f0..7821465 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ backend_lint_no_default: cargo clippy --no-default-features frontend_lint: - cd webui && yarn install && yarn lint + cd webui && yarn add ../tools/upend_js && yarn install && yarn lint backend_test: cargo test --workspace --verbose