Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable include-hidden-files for uploading code coverage chunks #12839

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ jobs:
path: coverage/*.*
retention-days: 2 # doesn't need to be long, because it's the combined results that matter
if-no-files-found: ignore
include-hidden-files: true

models:
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -160,6 +161,7 @@ jobs:
path: coverage/*.*
retention-days: 2 # doesn't need to be long, because it's the combined results that matter
if-no-files-found: ignore
include-hidden-files: true

system_admin:
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -237,6 +239,7 @@ jobs:
path: coverage/*.*
retention-days: 2 # doesn't need to be long, because it's the combined results that matter
if-no-files-found: ignore
include-hidden-files: true

- name: Archive failed tests screenshots
if: failure()
Expand Down Expand Up @@ -323,6 +326,7 @@ jobs:
path: coverage/*.*
retention-days: 2 # doesn't need to be long, because it's the combined results that matter
if-no-files-found: ignore
include-hidden-files: true

- name: Archive failed tests screenshots
if: failure()
Expand Down Expand Up @@ -410,6 +414,7 @@ jobs:
path: coverage/*.*
retention-days: 2 # doesn't need to be long, because it's the combined results that matter
if-no-files-found: ignore
include-hidden-files: true

test_the_rest:
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -486,6 +491,7 @@ jobs:
path: coverage/*.*
retention-days: 2 # doesn't need to be long, because it's the combined results that matter
if-no-files-found: ignore
include-hidden-files: true

non_knapsack_jest_karma:
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -559,3 +565,4 @@ jobs:
path: coverage/**/*.*
retention-days: 7
if-no-files-found: ignore
include-hidden-files: true
Loading