-
Notifications
You must be signed in to change notification settings - Fork 575
199 lines (163 loc) · 6.5 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
name: Pull Request
on:
pull_request:
types:
- opened
- synchronize
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"
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set Node version
uses: actions/setup-node@v3
with:
node-version: 20
- name: "Authenticate to Google Cloud"
uses: "google-github-actions/auth@v1"
with:
credentials_json: "${{ secrets.GCLOUD_SERVICE_ACCOUNT_JSON }}"
- name: Set up GCloud
uses: google-github-actions/setup-gcloud@v1
with:
project_id: ${{ secrets.GOOGLE_PROJECT_ID }}
- name: Install
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 }}
# No need to deploy legacy Launcher as branch/tag workflows
- 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 (OpenFin - Workspace)
env:
DOMAIN: https://openfin.env.reactivetrader.com
URL_PATH: /pull/${{ github.event.number }}/workspace
VITE_BUILD_VERSION: ${{ github.sha }}
run: |
npm run workspace:build
- name: Deploy (OpenFin - Workspace)
run: |
gsutil -m \
-h "Cache-Control: no-cache" \
rsync -d -r dist \
gs://$BUCKET_OPENFIN/pull/${{ github.event.number }}/workspace
- 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@v2
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@v3
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 end-to-end test
needs: build
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install
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
- uses: actions/upload-artifact@v3
if: failure()
with:
name: playwright-report
path: packages/client/playwright-report/
retention-days: 7
openfin-end-to-end-test:
name: Openfin end-to-end test
needs: build
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm ci
- name: start openfin
run: |
npx of-automation https://openfin.env.reactivetrader.com/pull/${{ github.event.number }}/config/rt-fx.json ./e2e/openfin.spec.js --devToolsPort=9091 --closeRuntime=never
- name: Run tests
env:
E2E_RTC_WEB_ROOT_URL: https://openfin.env.reactivetrader.com/pull/${{ github.event.number }}
run: |
npm run e2e:openfin spot-tile.spec blotter.spec
- uses: actions/upload-artifact@v3
if: failure()
with:
name: playwright-report
path: packages/client/playwright-report/
retention-days: 7