-
Notifications
You must be signed in to change notification settings - Fork 574
78 lines (63 loc) · 1.93 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
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
ENVIRONMENT: env
jobs:
build:
name: Build & deploy
runs-on: ubuntu-20.04
if: ${{ !github.event.pull_request.head.repo.fork }}
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
- name: Deploy (web)
run: |
gsutil -m \
-h "Cache-Control: no-cache" \
rsync -d -r dist \
gs://$BUCKET_WEB/pull/${{ github.event.number }}
- name: E2E Web - Credit only
env:
E2E_RTC_WEB_ROOT_URL: https://web.env.reactivetrader.com/pull/${{ github.event.number }}
run: npx playwright test --project=web credit.spec.ts
- name: Artifact Upload
uses: actions/upload-artifact@v4
# if: failure()
with:
name: playwright-report-of-credit
path: packages/client/playwright-report/
retention-days: 7