diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 47085764c..e49cc5650 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -24,10 +24,7 @@ jobs: cache: 'yarn' - run: yarn install --frozen-lockfile - uses: nrwl/nx-set-shas@v4 - - - run: npx nx-cloud start-ci-run --distribute-on="manual" --stop-agents-after="e2e" - - run: npx nx affected -t=build,test,lint - - run: npx nx affected -t=e2e --exclude=nx-ignore-e2e + - run: sh -c "npx nx-cloud start-ci-run --distribute-on="manual" --stop-agents-after="e2e"; sleep 120s; npx nx run-many -t=build,test,lint" agents: runs-on: ubuntu-latest name: Agent [${{ matrix.agent }}] diff --git a/nx.json b/nx.json index 594329fd8..98c9596d0 100644 --- a/nx.json +++ b/nx.json @@ -22,12 +22,12 @@ "build-base": { "cache": true }, - "test": { - "cache": true - }, "e2e": { "parallelism": false }, + "test": { + "cache": true + }, "@nx/jest:jest": { "cache": true, "inputs": ["default", "^default", "{workspaceRoot}/jest.preset.js"], diff --git a/package.json b/package.json index 77da99b8c..a18a7a9a4 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,8 @@ "test": "nx run-many -t=test --exclude=nx-labs", "build-ci": "nx build", "test-ci": "nx test", - "e2e-ci": "nx e2e" + "e2e-ci": "nx e2e", + "//": "//testings" }, "dependencies": { "@storybook/addon-interactions": "8.6.12",