-
Notifications
You must be signed in to change notification settings - Fork 0
370 lines (311 loc) · 11.8 KB
/
deploy.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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
name: 🚀 Deploy
on:
push:
branches:
- main
- dev
- staging
pull_request: {}
# Ensure that only a single job or workflow using the same concurrency group will run at a time
# This negates the need for styfle/cancel-workflow-action
concurrency:
# Ensures that we process concurrently by branch using `github.ref` as the key
group: ${{ github.workflow }}-${{ github.ref }}
# If a run is in progress for a specific branch, cancel the current run and start a new run
cancel-in-progress: true
permissions:
actions: write
contents: read
jobs:
# If you want to reuse or share data between jobs/workflows,
# there are two ways to do this:
# 1. Use the cache action
# 2. Use upload/download artifact actions to pass the build artifacts between jobs
# Read: https://levelup.gitconnected.com/github-actions-how-to-share-data-between-jobs-fc1547defc3e
# Github doc: https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#comparing-artifacts-and-dependency-caching
# If you only need to cache dependencies for a package manager,
# use their respective `actions/setup-*` actions. See the cache example with actions/setup-node@v3 below.
# See: https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#comparing-artifacts-and-dependency-caching
# See: https://github.com/actions/setup-node?tab=readme-ov-file#caching-global-packages-data
validate-web:
name: ⬣ ESLint & ʦ TypeScript
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: Install pnpm package manager
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
# https://github.com/pnpm/action-setup#use-cache-to-reduce-installation-time
- uses: actions/cache@v3
name: ⚡️ Cache pnpm store
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: 📥 Download deps
run: pnpm install --ignore-scripts --prefer-offline
- name: 🖼 Build
run: pnpm run prebuild && pnpm run build
- name: 🔬 Lint and ʦ Typecheck
# https://stackoverflow.com/questions/3004811/how-do-you-run-multiple-programs-in-parallel-from-a-bash-script
run:
(trap 'kill 0' SIGINT; pnpm run lint --filter web & pnpm run typecheck
--filter web & wait)
test-web:
name: ⚡ Tests (Integration/Unit)
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install pnpm package manager
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: ⚡️ Cache pnpm store
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: 📥 Download deps
run: pnpm install --prefer-offline
- name: 🏄 Copy test env vars
run: cp apps/web/.env.example apps/web/.env
- name: 🛠 Setup test env (e.g. setup database, codegen)
run: pnpm run test:setup-ci --filter web
- name: 🖼 Build
run: pnpm run build
- name: ⚡ Run unit tests
run: pnpm run test
e2e-test-web:
name: 🎭 End to end testing for our web app
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: 🏄 Copy test env vars
run: cp ./apps/web/.env.example ./apps/web/.env
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install pnpm package manager
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: ⚡️ Cache pnpm store
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: 📥 Download deps
run: pnpm install --prefer-offline
- name: 🛠 Setup test env (e.g. setup database, codegen, install browsers)
run: pnpm run test:e2e:setup-ci --filter web
- name: 🏦 Cache Database
id: db-cache
uses: actions/cache@v3
with:
path: apps/web/prisma/data.db
key:
db-cache-schema_${{ hashFiles('./apps/web/prisma/schema.prisma')
}}-migrations_${{
hashFiles('./apps/web/prisma/migrations/*/migration.sql') }}
# Seeds the database if the cache was a miss
- name: 🌱 Seed Database
if: steps.db-cache.outputs.cache-hit != 'true'
run: pnpm run db:seed --filter web
env:
MINIMAL_SEED: true
- name: 🏗 Build
run: pnpm run build
- name: 🎭 Playwright tests
run: pnpm run test:e2e:run --filter web
- name: 📊 Upload report
uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
build-web:
name: 🐳 Build
# only build/deploy main and staging branch on pushes
if:
${{ (github.ref == 'refs/heads/main' || github.ref ==
'refs/heads/staging') && github.event_name == 'push' }}
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install pnpm package manager
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: ⚡️ Cache pnpm store
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: 📥 Download deps
run: pnpm install --prefer-offline
- name: 👀 Read app name
uses: SebRollen/[email protected]
id: read_toml
with:
file: 'apps/web/fly.toml'
field: 'app'
- name: 🐳 Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# Setup cache
- name: ⚡️ Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: 🔑 Fly Registry Auth
uses: docker/login-action@v3
with:
registry: registry.fly.io
username: x
password: ${{ secrets.FLY_API_TOKEN }}
- name: 🐳 Docker build
uses: docker/build-push-action@v5
with:
context: .
file: apps/web/other/Dockerfile
push: true
tags:
registry.fly.io/${{ steps.read_toml.outputs.value }}:${{
github.ref_name }}-${{ github.sha }}
build-args: |
COMMIT_SHA=${{ github.sha }}
STORE_PATH=${{ env.STORE_PATH }}
PROJECT=web
secrets: |
SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG=${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT=${{ secrets.SENTRY_PROJECT }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
# This ugly bit is necessary if you don't want your cache to grow forever
# till it hits GitHub's limit of 5GB.
# Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
- name: 🚚 Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
deploy-web:
name: 🚀 Deploy
runs-on: ubuntu-latest
needs: [validate-web, test-web, e2e-test-web, build-web]
# only build/deploy branches on pushes
if: ${{ github.event_name == 'push' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install pnpm package manager
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: ⚡️ Cache pnpm store
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: 📥 Download deps
run: pnpm install --prefer-offline
- name: 👀 Read app name
uses: SebRollen/[email protected]
id: read_toml
with:
file: 'apps/web/fly.toml'
# the field in the toml file to read. outputs the value to steps.read_toml.outputs.value
field: 'app'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# See here: https://github.com/superfly/flyctl-actions?tab=readme-ov-file#using-the-setup-flyctl-action
- name: 🎈 Setup Fly
uses: superfly/flyctl-actions/[email protected]
- name: 🚀 Deploy Staging
if: ${{ github.ref == 'refs/heads/staging' }}
run:
flyctl deploy --build-arg COMMIT_SHA=${{ github.sha }} --build-arg
STORE_PATH=${{ env.STORE_PATH }} --build-arg PROJECT=web --app ${{
steps.read_toml.outputs.value }}-staging --config ./apps/web/fly.toml
--image registry.fly.io/${{ steps.read_toml.outputs.value }}:${{
github.ref_name }}-${{ github.sha }} --build-secret
SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} --build-secret
SENTRY_ORG=${{ secrets.SENTRY_ORG }} --build-secret SENTRY_PROJECT=${{
secrets.SENTRY_PROJECT }}
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
- name: 🚀 Deploy Production
if: ${{ github.ref == 'refs/heads/main' }}
run:
flyctl deploy --build-arg COMMIT_SHA=${{ github.sha }} --build-arg
STORE_PATH=${{ env.STORE_PATH }} --build-arg PROJECT=web --app ${{
steps.read_toml.outputs.value }} --config ./apps/web/fly.toml --image
registry.fly.io/${{ steps.read_toml.outputs.value }}:${{
github.ref_name }}-${{ github.sha }} --build-secret
SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} --build-secret
SENTRY_ORG=${{ secrets.SENTRY_ORG }} --build-secret SENTRY_PROJECT=${{
secrets.SENTRY_PROJECT }}
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}