Cannot find /home/circleci/project/mochawesome-report/cypress-combined-report.html

Hi,

I am new to CircleCI. I have integrated mochawesome report with cypress and successfully executed build from the circle CI. The circle says

✓ Reports saved:
/home/circleci/project/mochawesome-report/cypress-combined-report.html

Where do I find cypress-combined-report.html in circleci? This text will be hidden

Reading the following guide

https://www.linkedin.com/pulse/cypress-generating-mochawesome-report-usama-azhar/

It seems that an index.html file has been generated under reports/html within the environment created to execute the job you have run. This environment is normally deleted once the job has finished.

To save such output you need to export the generated file to a long-term storage location and have some way to access it. The CircleCI platform provides such a solution with the store_artifacts command.

This provides a long-term storage location and a way to retrieve the file(s) via the CircleCI web console.