chore: rename format scripts for conventional naming

- format = fix (write)

- format:check = check only

- Update CI to use format:check
This commit is contained in:
quotentiroler
2026-02-09 17:09:55 -08:00
parent 8e607d927c
commit 64cf50dfc3
2 changed files with 10 additions and 13 deletions

View File

@@ -167,9 +167,6 @@ jobs:
fail-fast: false
matrix:
include:
- runtime: node
task: tsgo
command: pnpm tsgo
- runtime: node
task: test
command: pnpm canvas:a2ui:bundle && pnpm test
@@ -205,7 +202,7 @@ jobs:
uses: ./.github/actions/setup-node-env
- name: Check formatting
run: pnpm format
run: pnpm format:check
# Lint check — runs after format passes for cleaner output.
check-lint:
@@ -221,8 +218,8 @@ jobs:
- name: Setup Node environment
uses: ./.github/actions/setup-node-env
- name: Check lint
run: pnpm lint
- name: Check types and lint
run: pnpm check
# Check for files that grew past LOC threshold in this PR (delta-only).
# On push events, all steps are skipped and the job passes (no-op).