-
Notifications
You must be signed in to change notification settings - Fork 119
191 lines (191 loc) · 6.17 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
name: frontend
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- 'frontend/**'
- .github/workflows/frontend.yml
- Makefile
- tools/frontend-e2e.sh
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '16.x'
check-latest: true
- name: Enforce consistent Yarn version
run: ./tools/install-yarn.sh
- name: node_modules cache
id: node-modules-cache
uses: actions/cache@v3
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@v3
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: yarn --cwd frontend install
- name: build
run: yarn --cwd frontend build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '16.x'
check-latest: true
- name: Enforce consistent Yarn version
run: ./tools/install-yarn.sh
- name: node_modules cache
id: node-modules-cache
uses: actions/cache@v3
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: yarn --cwd frontend install
- name: Compile packages
run: yarn --cwd frontend compile:dev
- run: make frontend-lint
- run: make frontend-verify
- run: yarn --cwd frontend test:licenses
test-e2e:
name: test e2e
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
id: setup-go
with:
go-version: 1.20.x
- uses: actions/setup-node@v3
with:
node-version: '16.x'
check-latest: true
- name: Enforce consistent Yarn version
run: ./tools/install-yarn.sh
- name: cypress cache
id: cypress-cache
uses: actions/cache@v3
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@v3
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@v3
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@v3
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: yarn --cwd frontend install
- name: Compile packages
run: yarn --cwd frontend compile:dev
- name: Test [e2e]
id: e2e
run: ./tools/frontend-e2e.sh
- name: Upload end-to-end artifacts
uses: actions/upload-artifact@v3
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@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '16.x'
check-latest: true
- name: Enforce consistent Yarn version
run: ./tools/install-yarn.sh
- name: node_modules cache
id: node-modules-cache
uses: actions/cache@v3
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: yarn --cwd frontend install
- name: Compile packages
run: yarn --cwd frontend compile:dev
- name: Test [unit]
run: yarn --cwd frontend test:coverage
publish:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
needs: [build, lint, test-unit, test-e2e]
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '16.x'
check-latest: true
registry-url: 'https://registry.npmjs.org'
- name: Enforce consistent Yarn version
run: ./tools/install-yarn.sh
- name: node_modules cache
id: node-modules-cache
uses: actions/cache@v3
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: yarn --cwd frontend install
- name: publish
run: yarn --cwd frontend publishBeta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}