-
Notifications
You must be signed in to change notification settings - Fork 7
47 lines (38 loc) · 872 Bytes
/
ci.yaml
File metadata and controls
47 lines (38 loc) · 872 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
41
42
43
44
45
46
47
name: CI
on:
push:
branches:
- main
paths-ignore:
- "examples/**"
- "README.md"
pull_request:
branches:
- "**"
paths-ignore:
- "examples/**"
- "README.md"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout Source Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install Dependencies
run: bun install --frozen-lockfile
- name: Format Check
run: bun turbo format:check
- name: Type Check
run: bun turbo type:check
- name: Type Check (Package)
run: bun turbo type:check:package