From aa8f2ff6ca6e178a54a1a38dc8809899c118219e Mon Sep 17 00:00:00 2001 From: Waleed Hammam Date: Wed, 30 Aug 2023 17:31:30 +0300 Subject: [PATCH] add timeout for yarn --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ca2c11f956..786308b86e 100644 --- a/Makefile +++ b/Makefile @@ -166,7 +166,7 @@ ui: node_modules $(shell find ui -type f) ## Build the UI node_modules: ## Install node modules rm -rf .parcel-cache - yarn --pure-lockfile + yarn config set network-timeout 300000 && yarn --pure-lockfile ui-lint: ## Run linter against the UI yarn lint