Skip to content

Document centralized CI workflow strategy in CLAUDE.md #414

Document centralized CI workflow strategy in CLAUDE.md

Document centralized CI workflow strategy in CLAUDE.md #414

Workflow file for this run

name: Type Checks
on:
push:
branches: [main]
tags: ['*']
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
type-check:
uses: SocketDev/socket-registry/.github/workflows/types.yml@main
with:
type-script: 'pnpm run check:tsc'
setup-script: 'pnpm run build'
node-version: '22'
timeout-minutes: 10