forked from WoWAnalyzer/WoWAnalyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
254 lines (241 loc) · 7.44 KB
/
build.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
name: 'Build'
on: [push, pull_request, merge_group]
env:
CI: true
jobs:
prepare:
name: 'Install dependencies'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
typecheck:
needs: [prepare]
name: 'Typecheck'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm run typecheck
linting:
needs: [prepare]
name: 'ESLint'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm run lint --max-warnings=0
prettier:
needs: [prepare]
name: 'Prettier'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm exec prettier . --check
tests:
needs: [prepare]
name: 'Tests'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm run test
build:
needs: [prepare]
name: 'Build'
runs-on: ubuntu-latest
if: github.repository == 'wowanalyzer/wowanalyzer'
outputs:
environment_name: ${{ steps.environment-name.outputs.environment_name }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- name: Extract messages
if: github.event_name != 'pull_request' && github.repository == 'wowanalyzer/wowanalyzer'
run: |
pnpm run extract
pnpm exec lingui compile
- name: Calculate environment name
id: environment-name
run: echo "environment_name=${GITHUB_REF_NAME}" >> $GITHUB_OUTPUT
- name: Production build
run: pnpm run build
env:
DISABLE_AUTOMATIC_ESLINT: true
VITE_ENABLE_GA: true
VITE_ENVIRONMENT_NAME: ${{ steps.environment-name.outputs.environment_name }}
VITE_VERSION: ${{ github.sha }}
- run: tar -czf dist.tar.gz dist
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist.tar.gz
e2e-build:
needs: [prepare]
name: 'e2e-build'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- name: Extract messages
run: |
pnpm run extract
pnpm exec lingui compile
- name: Calculate environment name
id: environment-name
run: echo "environment_name=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
- name: Customize production environment variables
# Even though this is a "production" build, it's actually a "development" build we're
# using for e2e testing.
run: cp .env.development .env.production
- name: Production build
run: pnpm run build
env:
DISABLE_AUTOMATIC_ESLINT: true
VITE_ENABLE_GA: false
VITE_ENVIRONMENT_NAME: ${{ steps.environment-name.outputs.environment_name }}
VITE_VERSION: ${{ github.sha }}
VITE_FORCE_PREMIUM: true
- run: tar -czf dist.tar.gz dist
- uses: actions/upload-artifact@v4
with:
name: e2e-build
path: dist.tar.gz
e2e-test:
needs: [e2e-build]
name: e2e-test-shard-${{ matrix.shard }}
runs-on: ubuntu-latest
strategy:
matrix:
shard: [1, 2, 3, 4]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- uses: actions/download-artifact@v4
with:
name: e2e-build
- run: tar -xzf dist.tar.gz
- name: Install Playwright deps
run: pnpm exec playwright install --with-deps
- name: Run Playwright tests
run: pnpm run e2e --shard=${{ matrix.shard }}/4
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report-shard-${{ matrix.shard }}
path: playwright-report/
retention-days: 30
# This only runs on PRs since it's not a part of the build step. This is
# required as mistakes in i18n tags may trigger errors, and we skip the
# extraction in the build for performance in PRs.
extract-verify:
needs: [prepare]
name: 'Verify i18n messages'
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- name: Extract messages
run: pnpm run extract
- name: Compile messages
run: pnpm exec lingui compile
docker-image:
needs: [typecheck, linting, prettier, tests, build]
name: 'Publish Docker image'
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.repository == 'wowanalyzer/wowanalyzer'
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: dist
path: .
- run: tar -xzf dist.tar.gz
# Remove files we no longer need to speed up sending context to Docker
- run: rm dist.tar.gz
- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v5
with:
images: |
wowanalyzer/wowanalyzer
tags: |
type=ref,event=branch
type=ref,event=pr
type=sha
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{secrets.DOCKER_USERNAME}}
password: ${{secrets.DOCKER_PASSWORD}}
- name: Build Docker image
id: docker_build
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
require-changelog-entry:
name: 'Has new changelog entry'
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v4
- run: git fetch --no-tags --depth=1 origin $GITHUB_BASE_REF:$GITHUB_BASE_REF
- uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: node scripts/require-changelog-entry.cjs