diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 95d1d7b16..a147079b0 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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 diff --git a/.gitignore b/.gitignore index 450e4c333..e83be239a 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/cucumber.js b/cucumber.js index 541114c45..caa4fc985 100644 --- a/cucumber.js +++ b/cucumber.js @@ -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', diff --git a/reports/.gitkeep b/reports/.gitkeep new file mode 100644 index 000000000..e69de29bb