-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (45 loc) · 1.22 KB
/
ci.yml
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
48
49
50
51
52
53
54
55
56
57
name: CI
on:
pull_request:
jobs:
backend_build:
name: "Build & Check (backend)"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Nodejs v20
uses: actions/setup-node@v4
- uses: pnpm/action-setup@v2
with:
version: 9
- name: Cache
uses: actions/cache@v4
with:
path: ~/.cache/install/cache
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-
- name: Install packages
run: pnpm i --frozen-lockfile
- name: Code Check
run: pnpm backend check
- name: Lint
run: pnpm backend lint
- name: Test
run: pnpm backend test
frontend_build:
name: "Build & Check (frontend)"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install
run: bun install --frozen-lockfile
- name: Lint bun lint
run: bun run --cwd packages/kcmsf lint
- name: Test
run: bun run --cwd packages/kcmsf test:ci