Skip to content

fix: login プロセスの stdout/stderr を独立した行バッファにする(#113) #238

fix: login プロセスの stdout/stderr を独立した行バッファにする(#113)

fix: login プロセスの stdout/stderr を独立した行バッファにする(#113) #238

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Node version mirrors mise.toml (kept in sync manually).
- uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint (Biome)
run: npm run lint
- name: Typecheck (tsc --noEmit)
run: npm run typecheck
- name: Test (vitest + coverage)
run: npm test
- name: Build (tsup)
run: npm run build