Skip to content

Commit 0f59e6a

Browse files
committed
chore: temporarily disable nx cloud
1 parent af4bf4c commit 0f59e6a

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

.github/actions/setup/action.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,12 @@ runs:
3838
run: pnpm install --frozen-lockfile
3939
shell: bash
4040

41-
- name: Nx Cloud start
42-
run: pnpm dlx nx-cloud start-ci-run --distribute-on=".nx/workflows/dynamic-changesets.yml" --stop-agents-after="e2e-ci" --with-env-vars="CODECOV_TOKEN"
43-
shell: bash
44-
env:
45-
CODECOV_TOKEN: ${{ inputs.CODECOV_TOKEN }}
41+
# Temporarily disable Nx Cloud until security concern is resolved
42+
# - name: Nx Cloud start
43+
# run: pnpm dlx nx-cloud start-ci-run --distribute-on=".nx/workflows/dynamic-changesets.yml" --stop-agents-after="e2e-ci" --with-env-vars="CODECOV_TOKEN"
44+
# shell: bash
45+
# env:
46+
# CODECOV_TOKEN: ${{ inputs.CODECOV_TOKEN }}
4647

4748
- name: Cache Playwright browsers
4849
uses: actions/cache@v4
@@ -64,7 +65,8 @@ runs:
6465
run: pnpm nx sync:check
6566

6667
- name: Run Nx build/lint/test/e2e
67-
run: pnpm exec nx affected -t build lint test e2e-ci
68+
# Temporarily disable e2e-ci until we get Nx Cloud back
69+
run: pnpm exec nx affected -t build lint test e2e
6870
shell: bash
6971

7072
- name: Upload Playwright report

.github/workflows/ci-fork.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,6 @@ jobs:
5555
- uses: nrwl/nx-set-shas@v4
5656

5757
- run: pnpm nx format:check
58-
- run: pnpm nx affected -t build typecheck lint test e2e-ci --no-agents
58+
59+
# Temporarily disable e2e-ci until we get Nx Cloud back
60+
- run: pnpm nx affected -t build typecheck lint test e2e --no-agents

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ jobs:
3232
with:
3333
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
3434

35-
- run: npx nx-cloud fix-ci
36-
if: always()
35+
# Temporarily disable Nx Cloud until security concern is resolved
36+
# - run: npx nx-cloud fix-ci
37+
# if: always()
3738

3839
- uses: codecov/codecov-action@v5
3940
with:

0 commit comments

Comments
 (0)