-
Notifications
You must be signed in to change notification settings - Fork 574
231 lines (181 loc) · 7.14 KB
/
pull.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
name: Pull Request
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
defaults:
run:
working-directory: packages/client
env:
BUCKET_WEB: reactive-trader-web-builds
BUCKET_OPENFIN: reactive-trader-openfin-builds
BUCKET_FINSEMBLE: reactive-trader-finsemble-builds
ENVIRONMENT: env
jobs:
build:
name: Build & deploy
runs-on: ubuntu-20.04
if: ${{ !github.event.pull_request.head.repo.fork && !github.event.pull_request.draft }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: 20
- name: "Authenticate to Google Cloud"
uses: "google-github-actions/auth@v2"
with:
credentials_json: "${{ secrets.GCLOUD_SERVICE_ACCOUNT_JSON }}"
- name: Set up GCloud
uses: google-github-actions/setup-gcloud@v2
with:
project_id: ${{ secrets.GOOGLE_PROJECT_ID }}
- name: Install dependencies
run: npm ci
- name: Verify Quality (type checking, linting, format checking, tests)
run: npm run verify
- name: Build (web)
env:
DOMAIN: https://web.env.reactivetrader.com
URL_PATH: /pull/${{ github.event.number }}
VITE_BUILD_VERSION: ${{ github.sha }}
run: |
npm run build
npm run storybook:build
- name: Deploy (web)
run: |
gsutil -m \
-h "Cache-Control: no-cache" \
rsync -d -r dist \
gs://$BUCKET_WEB/pull/${{ github.event.number }}
- name: Build (OpenFin)
env:
DOMAIN: https://openfin.env.reactivetrader.com
URL_PATH: /pull/${{ github.event.number }}
VITE_BUILD_VERSION: ${{ github.sha }}
run: npm run openfin:build
- name: Deploy (OpenFin)
run: |
gsutil -m \
-h "Cache-Control: no-cache" \
rsync -d -r dist \
gs://$BUCKET_OPENFIN/pull/${{ github.event.number }}
- name: Build (Finsemble)
env:
DOMAIN: https://finsemble.env.reactivetrader.com
URL_PATH: /pull/${{ github.event.number }}
VITE_BUILD_VERSION: ${{ github.sha }}
run: npm run finsemble:build
- name: Deploy (Finsemble)
run: |
gsutil -m \
-h "Cache-Control: no-cache" \
rsync -d -r dist \
gs://$BUCKET_FINSEMBLE/pull/${{ github.event.number }}
- name: Find comment
uses: peter-evans/find-comment@v3
id: comment
with:
issue-number: ${{ github.event.number }}
comment-author: "github-actions[bot]"
body-includes: "(auto-deploy)"
- name: Create comment (if not exists)
if: ${{ steps.comment.outputs.comment-id == 0 }}
uses: peter-evans/create-or-update-comment@v4
with:
issue-number: ${{ github.event.number }}
body: |
(auto-deploy) A deployment has been created for this Pull Request
### Preview links
As part of the code review process, please ensure that you test against the following
| Version | URL |
| :------------------ | :----------------------------------------------------------------------------------------------------- |
| Web | https://web.env.reactivetrader.com/pull/${{ github.event.number }} |
| OpenFin - FX | fins://openfin.env.reactivetrader.com/pull/${{ github.event.number }}/config/rt-fx.json |
| OpenFin - Credit | fins://openfin.env.reactivetrader.com/pull/${{ github.event.number }}/config/rt-credit.json |
| OpenFin - Launcher | fins://openfin.env.reactivetrader.com/pull/${{ github.event.number }}/config/launcher.json |
| OpenFin - Workspace | fins://openfin.env.reactivetrader.com/pull/${{ github.event.number }}/workspace/config/workspace.json |
| Finsemble | https://finsemble.env.reactivetrader.com/pull/${{ github.event.number }} |
### Performance
Please ensure that this PR does not degrade the performance of the UI. We should maintain a performance score of 95+.
https://developers.google.com/speed/pagespeed/insights/?url=https://web.env.reactivetrader.com/pull/${{ github.event.number }}
web-end-to-end-test:
name: Web e2e test - All
needs: build
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Test
env:
E2E_RTC_WEB_ROOT_URL: https://web.env.reactivetrader.com/pull/${{ github.event.number }}
run: npm run e2e:web
- name: Artifact Upload
uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-report
path: packages/client/playwright-report/
retention-days: 7
openfin-end-to-end-test-fx:
name: Openfin e2e test - FX
needs: web-end-to-end-test
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: start openfin
run: npm run _e2e:openfin:run --manifest_url=https://openfin.env.reactivetrader.com/pull/${{ github.event.number }}/config/rt-fx.json
- name: Run tests
env:
E2E_RTC_WEB_ROOT_URL: https://openfin.env.reactivetrader.com/pull/${{ github.event.number }}
run: npm run e2e:openfin fx-spot-tile.spec fx-blotter.spec fx-analytics.spec
- name: Artifact Upload
uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-report
path: packages/client/playwright-report/
retention-days: 7
openfin-end-to-end-test-credit:
name: Openfin e2e test - Credit
needs: web-end-to-end-test
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: start openfin
run: npm run _e2e:openfin:run --manifest_url=https://openfin.env.reactivetrader.com/pull/${{ github.event.number }}/config/rt-credit.json
- name: Run tests
env:
E2E_RTC_WEB_ROOT_URL: https://openfin.env.reactivetrader.com/pull/${{ github.event.number }}
run: npm run e2e:openfin credit.spec
- name: Artifact Upload
uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-report
path: packages/client/playwright-report/
retention-days: 7