From c584a3bcd8e30df96322dc81a6a1863e188a8d08 Mon Sep 17 00:00:00 2001 From: FrozenPandaz Date: Fri, 14 Apr 2023 18:54:58 -0400 Subject: [PATCH] chore(repo): debug depcheck --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8ffedfb4b03443..f94e10410e0f8d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -193,12 +193,14 @@ jobs: name: Run Checks/Lint/Test/Build no_output_timeout: 60m command: | + npx nx run-many -t depcheck --no-dte + pids=() npx nx-cloud record -- nx format:check --base=$NX_BASE --head=$NX_HEAD & pids+=($!) - npx nx run-many -t check-imports check-commit check-lock-files depcheck --parallel=1 --no-dte & + npx nx run-many -t check-imports check-commit check-lock-files --parallel=1 --no-dte & pids+=($!) yarn nx affected --target=lint --base=$NX_BASE --head=$NX_HEAD --parallel=3 &