···5353You can configure output with [`outputFile`](/config/outputfile) config option. You need to specify `.html` path there. For example, `./html/index.html` is the default value.
5454:::
55555656+::: tip
5757+To view the HTML report from CI, for example in GitHub Actions, upload the output directory as an artifact:
5858+5959+```yaml
6060+- uses: actions/upload-artifact@v4
6161+ id: upload-report
6262+ with:
6363+ name: vitest-report
6464+ path: html/
6565+6666+- name: Viewer link in summary
6767+ run: echo "[View HTML report](https://viewer.vitest.dev/?url=${{ steps.upload-report.outputs.artifact-url }})" >> $GITHUB_STEP_SUMMARY
6868+```
6969+7070+This adds a link to the job summary. Click it to open the report in [Vitest Viewer](https://viewer.vitest.dev/) directly in the browser. You can also download the artifact manually and extract it, then run `vite preview` locally as above.
7171+:::
7272+5673## Module Graph
57745875Module Graph's tab displays the module graph of the selected test file.