Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,14 @@ jobs:
if: steps.plan.outputs.asf_source == 'true'
run: npm run check:asf-source

- name: Lint
if: steps.plan.outputs.code == 'true'
run: npm run lint

- name: Check formatting
if: steps.plan.outputs.code == 'true'
run: npm run format:check

# Parsed dependency rules and an exact legacy-debt ledger keep the
# renderer root from absorbing new feature or Desktop ownership while
# the existing AppShell is migrated behind stable boundaries.
Expand All @@ -228,14 +236,6 @@ jobs:
npm run check:renderer-architecture
fi

- name: Lint
if: steps.plan.outputs.code == 'true'
run: npm run lint

- name: Check formatting
if: steps.plan.outputs.code == 'true'
run: npm run format:check

# This generated artifact describes the whole renderer/UI tree, so every
# code-validation run checks it even when the triggering diff is outside
# an Astryx surface. Keep it before Build so stale output is reported
Expand Down