-
Notifications
You must be signed in to change notification settings - Fork 1
98 lines (87 loc) · 2.28 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: CI
on:
push:
branches: [main]
pull_request:
env:
DATABASE_URL: ${{ secrets.DATABASE_URL_FOR_PRISMA_SQL_GENERATION }}
NEXT_PUBLIC_API_ENDPOINT: "sample"
NEXT_PUBLIC_FIREBASE_API_KEY: "sample"
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN: "sample"
NEXT_PUBLIC_FIREBASE_PROJECT_ID: "sample"
NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET: "sample"
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID: "sample"
NEXT_PUBLIC_FIREBASE_APP_ID: "sample"
NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID: "sample"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: make setup-ci
- run: make build
biome:
name: Code style check via Biome
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- uses: biomejs/setup-biome@v2
with:
version: latest
- run: make setup
- run: biome check
type-check:
name: Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: make setup-ci
- run: bunx tsc --noEmit
working-directory: web
- run: bunx tsc --noEmit
working-directory: server
spell-check:
name: Spell Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: make setup-ci
- run: make spell-check
test:
name: Bun Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: make setup-ci
- run: make test
deploy-test-web:
name: Deploy Test (web)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: oven-sh/setup-bun@v2
- run: make prepare-deploy-web
- run: test `ls web/out | wc -l` != 0
deploy-test-server:
name: Deploy Test (server)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: oven-sh/setup-bun@v2
- run: make prepare-deploy-server