Navigation Menu

Skip to content

Commit

Permalink
build: add build artifact for reports
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgoss committed Dec 17, 2021
1 parent 30be70f commit b53d820
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yaml
Expand Up @@ -37,6 +37,10 @@ jobs:
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v2
with:
name: reports
path: reports

audit-dependencies:
runs-on: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions .gitignore
Expand Up @@ -4,12 +4,12 @@
.nyc_output/
@rerun.txt
coverage/
html-formatter.html
lib/
messages.ndjson
node_modules
tmp/
usage.txt
reports/*.html
reports/*.ndjson
reports/*.txt
yarn-error.log
.vscode
.DS_Store
Expand Down
6 changes: 3 additions & 3 deletions cucumber.js
Expand Up @@ -4,9 +4,9 @@ module.exports = {
'--require features/**/*.ts',
`--format progress-bar`,
'--format rerun:@rerun.txt',
'--format usage:usage.txt',
'--format message:messages.ndjson',
'--format html:html-formatter.html',
'--format usage:reports/usage.txt',
'--format message:reports/messages.ndjson',
'--format html:reports/html-formatter.html',
'--retry 2',
'--retry-tag-filter @flaky',
'--publish-quiet',
Expand Down
Empty file added reports/.gitkeep
Empty file.

0 comments on commit b53d820

Please sign in to comment.