feat: test that the report is generated
This ensures we can download the artifact.
This commit is contained in:
parent
dfc3c31e70
commit
b7e76df813
1 changed files with 14 additions and 1 deletions
|
@ -26,8 +26,21 @@ jobs:
|
||||||
# Create a comment on the associated PR
|
# Create a comment on the associated PR
|
||||||
comment-on-pr: ${{ github.ref_name != 'main' }}
|
comment-on-pr: ${{ github.ref_name != 'main' }}
|
||||||
# Generate artifacts on main (to speed up comparisons)
|
# Generate artifacts on main (to speed up comparisons)
|
||||||
generate-artifact: ${{ github.ref_name == 'main' }}
|
# generate-artifact: ${{ github.ref_name == 'main' }}
|
||||||
|
# Always generate artifacts for testing purposes
|
||||||
|
generate-artifact: 'true'
|
||||||
# Generate comparisons to main
|
# Generate comparisons to main
|
||||||
do-comparison: 'true'
|
do-comparison: 'true'
|
||||||
# This job's name (so we can find the artifacts)
|
# This job's name (so we can find the artifacts)
|
||||||
job-name: report-size
|
job-name: report-size
|
||||||
|
report-download-check:
|
||||||
|
runs-on: nixos
|
||||||
|
needs: report-size
|
||||||
|
steps:
|
||||||
|
- name: Download previous report
|
||||||
|
uses: https://git.salame.cl/actions/download-artifact@d8d0a99033603453ad2255e58720b460a0555e1e # v4
|
||||||
|
with:
|
||||||
|
name: report.json
|
||||||
|
- name: Verify report exists
|
||||||
|
run: |
|
||||||
|
cat report.json
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue