From 3919a13606232bde9d318c562ce839782d2eb889 Mon Sep 17 00:00:00 2001 From: Craigory Coppola Date: Mon, 24 Jun 2024 13:43:45 -0400 Subject: [PATCH] chore(repo): tests --- .circleci/config.yml | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ba498cd4d15a2..ebe65316f530a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -86,6 +86,8 @@ jobs: NX_E2E_RUN_E2E: 'true' NX_CI_EXECUTION_ENV: 'linux' NX_CLOUD_DTE_V2: 'true' + NX_VERBOSE_LOGGING: 'true' + NX_E2E_VERBOSE_LOGGING: 'true' steps: - checkout - nx/set-shas: @@ -106,21 +108,7 @@ jobs: name: Run Checks/Lint/Test/Build no_output_timeout: 60m command: | - pids=() - - pnpm nx-cloud record -- nx format:check --base=$NX_BASE --head=$NX_HEAD & - pids+=($!) - - pnpm nx run-many -t check-imports check-commit check-lock-files check-codeowners documentation --parallel=1 --no-dte & - pids+=($!) - - (pnpm nx affected --targets=lint,test,build --base=$NX_BASE --head=$NX_HEAD --parallel=3 && - pnpm nx affected --targets=e2e,e2e-ci --base=$NX_BASE --head=$NX_HEAD --parallel=1) & - pids+=($!) - - for pid in "${pids[@]}"; do - wait "$pid" - done + pnpm nx e2e-ci e2e-react # ------------------------- # JOBS: Main-MacOS # -------------------------