Skip to content

Commit

Permalink
docs: Fix vite-config-path default cell in Options table (#244)
Browse files Browse the repository at this point in the history
The code snippet in the "Default" column of the "vite-config-path" row was being cut off because the pipe (|) characters were not being escaped.
  • Loading branch information
goibon committed Jul 2, 2023
1 parent 0271270 commit 4f10402
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ This action requires permissions set to `pull-request: write` in order for it to
| ------------------- | ----------------------------------------------------------------------------------------------- | ---------------------------------- |
| `json-summary-path` | The path to the json summary file. | `./coverage/coverage-summary.json` |
| `json-final-path` | The path to the json final file. | `./coverage/coverage-final.json` |
| `vite-config-path` | The path to the vite config file. Will check the same paths as vite and vitest | Checks pattern `vite[st].config.{t|mt|ct|j|mj|cj}s` |
| `vite-config-path` | The path to the vite config file. Will check the same paths as vite and vitest | Checks pattern `vite[st].config.{t\|mt\|ct\|j\|mj\|cj}s` |
| `github-token` | A GitHub access token with permissions to write to issues (defaults to `secrets.GITHUB_TOKEN`). | `${{ github.token }}` |
| `working-directory` | Run action within a custom directory (for monorepos). | `./` |
| `name` | Give the report a name. This is useful if you want multiple reports for different test suites within the same PR. Needs to be unique. | '' |
Expand Down Expand Up @@ -131,4 +131,4 @@ the report would look like this:

![Coverage Threshold Report](./docs/coverage-report-threshold.png)

If there are no thresholds defined, the status will be '🔵'.
If there are no thresholds defined, the status will be '🔵'.

0 comments on commit 4f10402

Please sign in to comment.