From 6d5a216f16d9d098ed4498a58090b62e355615c6 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 10 Sep 2024 03:24:03 +0300 Subject: [PATCH] run CI verbose --- .github/workflows/ci-examples.yml | 8 ++++---- .github/workflows/ci.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-examples.yml b/.github/workflows/ci-examples.yml index 95e867f6..8d2848bd 100644 --- a/.github/workflows/ci-examples.yml +++ b/.github/workflows/ci-examples.yml @@ -46,10 +46,10 @@ jobs: - name: Install dependencies run: npm i - name: pretarget E2E test project - run: npx nx run cli-e2e-pretarget:pretarget-e2e --parallel 1 + run: npx nx run cli-e2e-pretarget:pretarget-e2e --parallel=1 --verbose - name: graph E2E test project - run: npx nx run cli-e2e-graph:graph-e2e --parallel 1 + run: npx nx run cli-e2e-graph:graph-e2e --parallel=1 --verbose - name: env E2E test project - run: npx nx run cli-e2e-env:env-e2e --parallel 1 + run: npx nx run cli-e2e-env:env-e2e --parallel=1 --verbose - name: Original E2E test project - run: npx nx run cli-e2e-original:original-e2e --parallel 1 + run: npx nx run cli-e2e-original:original-e2e --parallel=1 --verbose diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d54af32..c0e0f864 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,4 +47,4 @@ jobs: run: npm i - name: E2E test all projects with buildable environmnets # run-many is only used to trigger the e2e tasks on every PR. affected would be a real life implementation - run: npx nx run-many -t e2e --parallel 1 + run: npx nx run-many -t e2e --parallel=1 --verbose