diff --git a/.circleci/config.yml b/.circleci/config.yml index e5784af5b8..a3e97f35a5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -210,7 +210,7 @@ jobs: - run: name: Run E2E Tests command: | - npx nx affected --target=e2e --base=$NX_BASE --head=$NX_HEAD --exclude=e2e-react-native,e2e-detox,e2e-gatsby --parallel --max-parallel=1 + npx nx affected --target=e2e --base=$NX_BASE --head=$NX_HEAD --exclude=e2e-react-native,e2e-detox,e2e-gatsby --parallel=1 no_output_timeout: 45m - run: name: Stop All Running Agents for This CI Run @@ -236,7 +236,7 @@ jobs: - run: name: Run E2E Tests command: | - npx nx affected --target=e2e --base=$NX_BASE --head=$NX_HEAD --exclude=e2e-detox,e2e-js,e2e-next,e2e-gatsby,e2e-workspace-create,e2e-workspace-integrations,e2e-workspace-core,e2e-react,e2e-web,e2e-angular-extensions,e2e-angular-core,e2e-cli,e2e-nx-plugin,e2e-storybook,e2e-cypress,e2e-node,e2e-linter,e2e-jest,e2e-add-nx-to-monorepo --max-parallel=1 + npx nx affected --target=e2e --base=$NX_BASE --head=$NX_HEAD --exclude=e2e-detox,e2e-js,e2e-next,e2e-gatsby,e2e-workspace-create,e2e-workspace-integrations,e2e-workspace-core,e2e-react,e2e-web,e2e-angular-extensions,e2e-angular-core,e2e-cli,e2e-nx-plugin,e2e-storybook,e2e-cypress,e2e-node,e2e-linter,e2e-jest,e2e-add-nx-to-monorepo --parallel=1 no_output_timeout: 45m - run: name: Stop All Running Agents for This CI Run diff --git a/.github/workflows/e2e-matrix.yml b/.github/workflows/e2e-matrix.yml index 19dcd7a67b..ce166faf0e 100644 --- a/.github/workflows/e2e-matrix.yml +++ b/.github/workflows/e2e-matrix.yml @@ -157,7 +157,7 @@ jobs: xcrun simctl shutdown all && xcrun simctl erase all - name: Run e2e tests - run: yarn nx run-many --target=e2e --projects="${{ join(matrix.packages) }}" --max-parallel=1 + run: yarn nx run-many --target=e2e --projects="${{ join(matrix.packages) }}" --parallel=1 env: GIT_AUTHOR_EMAIL: test@test.com GIT_AUTHOR_NAME: Test diff --git a/.github/workflows/e2e-windows.yml b/.github/workflows/e2e-windows.yml index 53485ba2cb..0b6a88bfc0 100644 --- a/.github/workflows/e2e-windows.yml +++ b/.github/workflows/e2e-windows.yml @@ -73,7 +73,7 @@ jobs: run: yarn install --prefer-offline --frozen-lockfile --non-interactive - name: Run e2e tests - run: yarn nx run-many --target=e2e --projects="${{ join(matrix.packages) }}" --max-parallel=1 + run: yarn nx run-many --target=e2e --projects="${{ join(matrix.packages) }}" --parallel=1 env: GIT_AUTHOR_EMAIL: test@test.com GIT_AUTHOR_NAME: Test