Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@ runs:
run: pnpm install --frozen-lockfile
shell: bash

- name: Nx Cloud start
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"
shell: bash
env:
CODECOV_TOKEN: ${{ inputs.CODECOV_TOKEN }}
# Temporarily disable Nx Cloud until security concern is resolved
# - name: Nx Cloud start
# 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"
# shell: bash
# env:
# CODECOV_TOKEN: ${{ inputs.CODECOV_TOKEN }}

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

- name: Run Nx build/lint/test/e2e
run: pnpm exec nx affected -t build lint test e2e-ci
# Temporarily disable e2e-ci until we get Nx Cloud back
run: pnpm exec nx affected -t build lint test e2e
shell: bash

- name: Upload Playwright report
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci-fork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,6 @@ jobs:
- uses: nrwl/nx-set-shas@v4

- run: pnpm nx format:check
- run: pnpm nx affected -t build typecheck lint test e2e-ci --no-agents

# Temporarily disable e2e-ci until we get Nx Cloud back
- run: pnpm nx affected -t build typecheck lint test e2e --no-agents
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ jobs:
with:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

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

- uses: codecov/codecov-action@v5
with:
Expand Down
Loading