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