Skip to content

feat(ci): add CI quality gates - CODEOWNERS, markdownlint, link check… #1873

feat(ci): add CI quality gates - CODEOWNERS, markdownlint, link check…

feat(ci): add CI quality gates - CODEOWNERS, markdownlint, link check… #1873

name: TypeScript Type Check
on:
push:
branches: [main]
pull_request:
branches: [main]
paths-ignore:
- '.github/workflows/release.yml'
workflow_dispatch:
permissions:
contents: read
jobs:
type-check:
name: TypeScript Type Check
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
- name: Setup Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run TypeScript type check
run: npm run type-check