File tree Expand file tree Collapse file tree 5 files changed +5
-21
lines changed Expand file tree Collapse file tree 5 files changed +5
-21
lines changed Original file line number Diff line number Diff line change 57
57
- name : Unit tests API
58
58
run : yarn --cwd redisinsight/api/ test:cov --ci --silent
59
59
60
-
61
- - name : Prepare report
62
- if : always()
63
- working-directory : redisinsight/api
64
- run : |
65
- mkdir report
66
- cp -R ./coverage ./report
67
- cp -a ./reports ./report/report
68
-
69
60
- name : Upload Test Report
70
61
uses : actions/upload-artifact@v4
71
62
if : always()
Original file line number Diff line number Diff line change 55
55
- name : Unit tests UI
56
56
run : yarn test:cov --ci --silent
57
57
58
- - name : Prepare report
59
- if : always()
60
- run : |
61
- mkdir report
62
- cp -R ./coverage ./report
63
- cp -a ./reports ./report/report
64
-
65
58
- name : Upload Test Report
66
59
uses : actions/upload-artifact@v4
67
60
if : always()
Original file line number Diff line number Diff line change @@ -53,11 +53,13 @@ redisinsight/ui/style.css.map
53
53
redisinsight /ui /dist
54
54
redisinsight /api /commands
55
55
redisinsight /api /guides
56
+ redisinsight /api /report
56
57
redisinsight /api /reports
57
58
redisinsight /api /dist-minified
58
59
redisinsight /api /tutorials
59
60
redisinsight /api /content
60
61
redisinsight /ui /dist-stats.html
62
+ report
61
63
reports
62
64
dist
63
65
distWeb
Original file line number Diff line number Diff line change @@ -52,9 +52,8 @@ module.exports = {
52
52
[
53
53
'jest-html-reporters' ,
54
54
{
55
- publicPath : './reports ' ,
55
+ publicPath : './report ' ,
56
56
filename : 'index.html' ,
57
- openReport : true ,
58
57
} ,
59
58
] ,
60
59
] ,
Original file line number Diff line number Diff line change 173
173
"reporters" : [
174
174
" default" ,
175
175
[" jest-html-reporters" , {
176
- "publicPath" : " ./reports" ,
177
- "filename" : " index.html" ,
178
- "openReport" : true
176
+ "publicPath" : " ./report" ,
177
+ "filename" : " index.html"
179
178
}]
180
179
]
181
180
}
You can’t perform that action at this time.
0 commit comments