diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-02-15 16:58:47 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-02-15 16:58:47 +0900 |
| commit | 897f22233810919ba01608bffbfa69f2bb926388 (patch) | |
| tree | cb6a140e4b818921386e8b2a0a79354e1359a5f6 /.github/workflows | |
| parent | 6e6b83173e35b0e8351e558ae685e226d9d44636 (diff) | |
| download | kioku-897f22233810919ba01608bffbfa69f2bb926388.tar.gz kioku-897f22233810919ba01608bffbfa69f2bb926388.tar.zst kioku-897f22233810919ba01608bffbfa69f2bb926388.zip | |
refactor: rename lint/typecheck scripts to check namespace
Consolidate typecheck and lint into a unified `pnpm check` command
with `check:ts` and `check:lint` sub-commands. Update CI workflow
to use the single check step and update docs accordingly.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yaml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 86db887..c451aef 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -27,11 +27,8 @@ jobs: - name: Install dependencies run: pnpm install --frozen-lockfile - - name: Lint - run: pnpm lint - - - name: Typecheck - run: pnpm typecheck + - name: Check + run: pnpm check - name: Test run: POSTGRES_USER=test POSTGRES_PASSWORD=test POSTGRES_DB=test POSTGRES_HOST=localhost POSTGRES_PORT=5432 pnpm test |
