-
-
Notifications
You must be signed in to change notification settings - Fork 23
40 lines (31 loc) · 835 Bytes
/
code-quality.yaml
File metadata and controls
40 lines (31 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Code Quality
on:
push:
branches:
- '**'
- '!renovate/*'
jobs:
check-types:
name: Check Types
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: pnpm/action-setup@v4
with:
version: '10.30.3'
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
registry-url: https://registry.npmjs.org
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Check TypeScript Types
run: pnpm dlx turbo check-types
- name: Run CommandKit Command Handler Tests
run: pnpm run test
- name: Check Generated API Docs
run: pnpm docgen:check
- name: Check Prettier Formatting
run: pnpm prettier:check