Skip to content

Commit b53d820

Browse files
committed
build: add build artifact for reports
1 parent 30be70f commit b53d820

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ jobs:
3737
- uses: coverallsapp/github-action@master
3838
with:
3939
github-token: ${{ secrets.GITHUB_TOKEN }}
40+
- uses: actions/upload-artifact@v2
41+
with:
42+
name: reports
43+
path: reports
4044

4145
audit-dependencies:
4246
runs-on: ubuntu-latest

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
.nyc_output/
55
@rerun.txt
66
coverage/
7-
html-formatter.html
87
lib/
9-
messages.ndjson
108
node_modules
119
tmp/
12-
usage.txt
10+
reports/*.html
11+
reports/*.ndjson
12+
reports/*.txt
1313
yarn-error.log
1414
.vscode
1515
.DS_Store

cucumber.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ module.exports = {
44
'--require features/**/*.ts',
55
`--format progress-bar`,
66
'--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',
1010
'--retry 2',
1111
'--retry-tag-filter @flaky',
1212
'--publish-quiet',

reports/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)