-
-
Notifications
You must be signed in to change notification settings - Fork 37
222 lines (211 loc) · 7.46 KB
/
pr.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
name: Uploady Build
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
defaults:
run:
shell: bash
permissions:
pull-requests: write
contents: write
actions: read
checks: write
jobs:
prep-e2e:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
with:
with-cypress: true
with-frozen: true
- name: Install dependencies
uses: cypress-io/github-action@v6
with:
runTests: false
build:
name: Build Library
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
with:
with-cypress: true
with-frozen: true
- name: Build
run: pnpm build
bundle:
name: Create code bundles
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
with:
with-cypress: true
with-frozen: true
- name: Bundle for Production
id: bundle-prod
run: |
pnpm bundle:prod
- name: Cache Bundle Folder
id: cache-bundle
uses: actions/cache@v4
with:
path: bundle
key: bundle-${{ runner.os }}-${{ hashFiles('bundle/**') }}
- name: Bundle Size Report
id: bundle-size-report
uses: ./.github/actions/bundle-size-report
with:
reportData: ${{ steps.bundle-prod.outputs.BUNDLE_SIZE_REPORT_DATA }}
sb:
name: Build Storybook
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
with:
with-cypress: true
with-frozen: true
- name: build storybook
run: pnpm sb:build:internal
- name: Cache SB Build
id: cache-sb
uses: actions/cache@v4
with:
path: .sb-static
key: sb-static-${{ hashFiles('lerna.json') }}-${{ github.run_id }}
lft:
name: Lint, Flow, Types
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
with:
with-cypress: true
with-frozen: true
- name: lft
run: pnpm test:ci
unit-test:
name: Unit-Test (Vitest)
runs-on: ubuntu-latest
environment: "Rpldy-Build"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
with:
with-cypress: true
with-frozen: true
- name: unit-test
run: pnpm vitest:ci
- name: Show Report Coverage
uses: davelosert/vitest-coverage-report-action@v2
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: Unit-test Report
path: reports/junit/js-*.xml
reporter: jest-junit
- name: Upload Coverage (master only)
uses: codecov/codecov-action@v4
if: ${{ github.ref_name == 'master' }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/coverage-final.json
fail_ci_if_error: true
verbose: true
e2e:
runs-on: ubuntu-latest
needs:
- prep-e2e
- bundle
- sb
steps:
- name: Checkout PR
uses: actions/checkout@v4
if: ${{ github.ref_name != 'master' }}
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Checkout
uses: actions/checkout@v4
if: ${{ github.ref_name == 'master' }}
- name: Prepare
uses: ./.github/actions/prepare
with:
with-cypress: true
with-frozen: true
- name: Restore SB Build Cache
uses: actions/cache@v4
with:
path: .sb-static
key: sb-static-${{ hashFiles('lerna.json') }}-${{ github.run_id }}
restore-keys: sb-static-${{ hashFiles('lerna.json') }}-
- name: Restore Bundle Cache
uses: actions/cache@v4
with:
path: bundle
key: bundle-${{ runner.os }}-
restore-keys: bundle-${{ runner.os }}-
- name: Cypress run
id: cypress-e2e
uses: cypress-io/github-action@v6
with:
install: false
start: |
pnpm sb:serve
pnpm bundle:serve
wait-on: 'http://127.0.0.1:8001, http://127.0.0.1:8009'
command: pnpm cy:parallel:gh
- name: Check for GIT Changes (Weights File)
id: check-weights-changes
if: ${{ github.ref_name != 'master' && steps.cypress-e2e.outcome == 'success' }}
run: |
if [[ `git status --porcelain` ]]; then
echo "found changes to weights file!"
echo "WEIGHTS_HAS_CHANGES=true" >> $GITHUB_OUTPUT
else
echo "NO changes to weights file!"
fi
- name: Commit Weights File (only if there was a change)
if: ${{ steps.check-weights-changes.outputs.WEIGHTS_HAS_CHANGES == 'true' }}
run: |
git config user.email "[email protected]"
git config user.name "Uploady CI"
git status
git add cypress/e2e-weights.json
git commit -m "chore: update e2e weights file"
git push
- name: Store screenshots
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
if-no-files-found: ignore
- name: E2E Report
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: E2E Report
path: cypress/results/results-*.xml
reporter: java-junit