File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 37
37
- uses : coverallsapp/github-action@master
38
38
with :
39
39
github-token : ${{ secrets.GITHUB_TOKEN }}
40
+ - uses : actions/upload-artifact@v2
41
+ with :
42
+ name : reports
43
+ path : reports
40
44
41
45
audit-dependencies :
42
46
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 4
4
.nyc_output /
5
5
@rerun.txt
6
6
coverage /
7
- html-formatter.html
8
7
lib /
9
- messages.ndjson
10
8
node_modules
11
9
tmp /
12
- usage.txt
10
+ reports /* .html
11
+ reports /* .ndjson
12
+ reports /* .txt
13
13
yarn-error.log
14
14
.vscode
15
15
.DS_Store
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ module.exports = {
4
4
'--require features/**/*.ts' ,
5
5
`--format progress-bar` ,
6
6
'--format rerun:@rerun.txt' ,
7
- '--format usage:usage.txt' ,
8
- '--format message:messages.ndjson' ,
9
- '--format html:html-formatter.html' ,
7
+ '--format usage:reports/ usage.txt' ,
8
+ '--format message:reports/ messages.ndjson' ,
9
+ '--format html:reports/ html-formatter.html' ,
10
10
'--retry 2' ,
11
11
'--retry-tag-filter @flaky' ,
12
12
'--publish-quiet' ,
You can’t perform that action at this time.
0 commit comments