-
Notifications
You must be signed in to change notification settings - Fork 0
279 lines (227 loc) · 8.69 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
name: CI
on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
branches:
- '**'
jobs:
tests-without-docker:
name: Tests without PostgreSQL and MySQL, then exec Next.js export on Node ${{ matrix.node }} and ${{ matrix.os }}
if: ${{ !contains(github.event.head_commit.message, '[light ci]') }}
strategy:
matrix:
node: ['18.x', '20.x', '22.x']
os: [ubuntu-22.04]
include:
- node: '18.x'
os: 'windows-2019'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
- run: node --version
- run: yarn
- run: yarn build
- name: Test
run: yarn test-ci
env:
REDIS_TEST: 0
MYSQL_TEST: 0
POSTGRESQL_TEST: 0
tests-with-docker:
name: 'Full tests on ${{ matrix.container }} and Codecov'
if: ${{ !contains(github.event.head_commit.message, '[light ci]') }}
strategy:
matrix:
container:
# bullseye-slim だと `gpg: not found` というエラーが出て Codecov にアップロードできない。別途 gpg をインストールする手もあるが、現状は Codecov にアップロードする際は bullseye を用いている。
[
'node:18-bullseye',
'node:18-bullseye-slim',
'node:20-bullseye-slim',
'node:22-bookworm-slim', # Dockerfile で用いられるイメージ。
]
runs-on: ubuntu-22.04
container: ${{ matrix.container }}
services:
mysql:
image: mysql:8.4
env:
MYSQL_ROOT_PASSWORD: root_password
MYSQL_USER: test
MYSQL_PASSWORD: test
MYSQL_DATABASE: test
options: >-
--health-cmd "mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 3306:3306
postgres:
image: postgres
env:
POSTGRES_USER: test
POSTGRES_PASSWORD: test
POSTGRES_DB: test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout repo
uses: actions/checkout@v4
- run: node --version
- run: yarn
- run: yarn build
- name: Migration-up MySQL
run: yarn migration-up --db mysql
working-directory: ./apps/api-server
env:
MYSQL: >
{
"clientUrl": "mysql://test:test@mysql:3306/test"
}
- name: Migration-up PostgreSQL
run: yarn migration-up --db postgresql
working-directory: ./apps/api-server
env:
POSTGRESQL: >
{
"clientUrl": "postgresql://test:test@postgres:5432/test"
}
- name: Test
run: yarn test-ci
- name: Upload coverages to Codecov
if: ${{ matrix.container == 'node:18-bullseye' }}
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
# 以下のテストを行っている。PnP モードありでのテストは現在行っていない。
# - DATABASE_URL を用いて API サーバーが起動することの確認
# - AUTO_MIGRATION が正常に動くことの確認
check-api-server:
name: 'Check API server (PnP=${{ matrix.pnp }})'
strategy:
matrix:
pnp: [false]
runs-on: ubuntu-22.04
container: node:18-bullseye-slim
services:
mysql:
image: mysql:8.4
env:
MYSQL_ROOT_PASSWORD: root_password
MYSQL_USER: test
MYSQL_PASSWORD: test
MYSQL_DATABASE: test
options: >-
--health-cmd "mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 3306:3306
postgres:
image: postgres
env:
POSTGRES_USER: test
POSTGRES_PASSWORD: test
POSTGRES_DB: test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout repo
uses: actions/checkout@v4
- run: node --version
- name: Enable PnP
run: "sed -i 's/nodeLinker: node-modules//g' ./.yarnrc.yml"
if: ${{ matrix.pnp == true }}
- run: cat ./.yarnrc.yml
- run: yarn
- run: yarn build
- name: Try starting api-server with SQLite
run: timeout -k 3 10 yarn start || if test $? -eq 124; then echo OK; else exit $?; fi
working-directory: ./apps/api-server
env:
DATABASE_URL: file://main.sqlite3
AUTO_MIGRATION: true
FIREBASE_PROJECT_ID: test-firebase-id-1234
- name: Try starting api-server with MySQL
run: timeout -k 3 10 yarn start || if test $? -eq 124; then echo OK; else exit $?; fi
working-directory: ./apps/api-server
env:
DATABASE_URL: mysql://test:test@mysql:3306/test
AUTO_MIGRATION: true
FIREBASE_PROJECT_ID: test-firebase-id-1234
- name: Try starting api-server with PostgreSQL
run: timeout -k 3 10 yarn start || if test $? -eq 124; then echo OK; else exit $?; fi
working-directory: ./apps/api-server
env:
DATABASE_URL: postgresql://test:test@postgres:5432/test
AUTO_MIGRATION: true
FIREBASE_PROJECT_ID: test-firebase-id-1234
# fails on windows because it uses crlf
check-format:
name: Check lint, prettier, and sort-package-json
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Use Node 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
- run: yarn
- run: yarn build
- name: Lint
run: yarn lint
- name: Prettier(check)
run: yarn prettier-check
- name: sort-package-json(check)
run: yarn sort-package-json --check
publish-storybook:
name: Publish Storybook to Chromatic
if: ${{ !contains(github.event.head_commit.message, '[light ci]') && github.event_name == 'push' }}
needs: [tests-with-docker, tests-without-docker]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
# Requires full git history: https://github.com/chromaui/action#getting-started
fetch-depth: 0
- name: Use Node 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
- run: yarn
- run: yarn build
- name: Publish to Chromatic
uses: chromaui/action@latest
with:
workingDir: ./apps/web-server
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}