-
Notifications
You must be signed in to change notification settings - Fork 119
210 lines (210 loc) · 6.73 KB
/
frontend.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
name: frontend
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- "frontend/**"
- .github/workflows/frontend.yml
- Makefile
- tools/frontend-e2e.sh
env:
FRONTEND_DIR: ./frontend
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "18.x"
check-latest: true
- name: Enforce consistent Yarn version
run: make yarn-ensure
- name: node_modules cache
id: node-modules-cache
uses: actions/cache@v4
with:
path: |
**/node_modules
key: ${{ runner.os }}-${{ steps.setup-node.outputs.node-version }}-node-modules-${{ hashFiles('**/yarn.lock') }}
- name: build cache
if: |
steps.node-modules-cache.outputs.cache-hit == 'true' &&
github.ref != 'refs/heads/main'
id: build-cache
uses: actions/cache@v4
with:
path: |
**/dist
**/app/build
**/tsconfig.tsbuildinfo
!**/node_modules
key: ${{ runner.os }}-fe-build-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
if: steps.node-modules-cache.outputs.cache-hit != 'true'
run: make yarn-install
- name: build
run: make frontend
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "18.x"
check-latest: true
- name: Enforce consistent Yarn version
run: make yarn-ensure
- name: node_modules cache
id: node-modules-cache
uses: actions/cache@v4
with:
path: |
**/node_modules
key: ${{ runner.os }}-${{ steps.setup-node.outputs.node-version }}-node-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
if: steps.node-modules-cache.outputs.cache-hit != 'true'
run: make yarn-install
- name: Compile packages
run: yarn run compile:dev
working-directory: ${{ env.FRONTEND_DIR }}
- name: Frontend Lint
run: make frontend-lint
- name: Frontend Verify
run: make frontend-verify
- name: Frontend Constraints
run: yarn constraints
working-directory: ${{ env.FRONTEND_DIR }}
- name: Frontend Test Licenses
run: yarn run test:licenses
working-directory: ${{ env.FRONTEND_DIR }}
test-e2e:
name: Test [e2e]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
id: setup-go
with:
go-version: 1.22.x
- uses: actions/setup-node@v4
with:
node-version: "18.x"
check-latest: true
- name: Enforce consistent Yarn version
run: make yarn-ensure
- name: cypress cache
id: cypress-cache
uses: actions/cache@v4
with:
path: |
~/.cache/Cypress
key: ${{ runner.os }}-cypress-${{ hashFiles('**/yarn.lock') }}
- name: node_modules cache
id: node-modules-cache
if: steps.cypress-cache.outputs.cache-hit == 'true'
uses: actions/cache@v4
with:
path: |
**/node_modules
key: ${{ runner.os }}-${{ steps.setup-node.outputs.node-version }}-node-modules-${{ hashFiles('**/yarn.lock') }}
- name: go mod cache
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
key: ${{ runner.os }}-${{ steps.setup-go.outputs.go-version }}-go-mod-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-mod-
- name: go build cache
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
key: ${{ runner.os }}-${{ steps.setup-go.outputs.go-version }}-go-mock-build-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-mock-build-
${{ runner.os }}-go-build-
- name: Install dependencies
if: steps.node-modules-cache.outputs.cache-hit != 'true'
run: make yarn-install
- name: Compile packages
run: yarn run compile:dev
working-directory: ${{ env.FRONTEND_DIR }}
- name: Test [e2e]
id: e2e
run: ./tools/frontend-e2e.sh
- name: Upload end-to-end artifacts
uses: actions/upload-artifact@v4
if: failure() && steps.e2e.outcome == 'failure'
with:
name: screenshots
path: ./frontend/packages/app/cypress/screenshots
test-unit:
name: Test [unit]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "18.x"
check-latest: true
- name: Enforce consistent Yarn version
run: make yarn-ensure
- name: node_modules cache
id: node-modules-cache
uses: actions/cache@v4
with:
path: |
**/node_modules
key: ${{ runner.os }}-${{ steps.setup-node.outputs.node-version }}-node-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
if: steps.node-modules-cache.outputs.cache-hit != 'true'
run: make yarn-install
- name: Compile packages
run: yarn run compile:dev
working-directory: ${{ env.FRONTEND_DIR }}
- name: Test [unit]
run: yarn run test:coverage
working-directory: ${{ env.FRONTEND_DIR }}
publish:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
needs: [build, lint, test-unit, test-e2e]
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "18.x"
check-latest: true
registry-url: "https://registry.npmjs.org"
- name: Enforce consistent Yarn version
run: make yarn-ensure
- name: node_modules cache
id: node-modules-cache
uses: actions/cache@v4
with:
path: |
**/node_modules
key: ${{ runner.os }}-${{ steps.setup-node.outputs.node-version }}-node-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
if: steps.node-modules-cache.outputs.cache-hit != 'true'
run: make yarn-install
- name: Set Publish Auth
run: yarn config set npmAuthToken $NODE_AUTH_TOKEN
working-directory: ${{ env.FRONTEND_DIR }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: publish
run: yarn run publishBeta
working-directory: ${{ env.FRONTEND_DIR }}