diff --git a/actions/lint/README.md b/actions/lint/README.md
index c3022ee..3d70567 100644
--- a/actions/lint/README.md
+++ b/actions/lint/README.md
@@ -3,7 +3,7 @@
#  GitHub Action: Lint
-

+
---
@@ -46,6 +46,10 @@ Action to lint Node.js projects with support for pull request reporting and anno
# This should be a script defined in your `package.json`.
# The command should generate lint report files in a standard format.
#
+ # ESLint: `eslint --format json -o eslint-report.json .`
+ # Prettier: `prettier --check . | tee prettier-report.txt`
+ # Astro: `astro check | tee astro-report.txt`
+ #
# Default: `lint:ci`
command: lint:ci
@@ -72,6 +76,10 @@ Action to lint Node.js projects with support for pull request reporting and anno
| **`command`** | npm/pnpm/Yarn script command to run for linting. | **false** | `lint:ci` |
| | This should be a script defined in your `package.json`. | | |
| | The command should generate lint report files in a standard format. | | |
+| | | | |
+| | ESLint: `eslint --format json -o eslint-report.json .` | | |
+| | Prettier: `prettier --check . \| tee prettier-report.txt` | | |
+| | Astro: `astro check \| tee astro-report.txt` | | |
| **`report-file`** | Optional lint report path forwarded to the [parse-ci-reports](https://hoverkraft-tech/ci-github-common/actions/parse-ci-reports) action. | **false** | - |
| | Provide an absolute path or one relative to the working directory. | | |
| | When omitted, the action falls back to `auto:lint` detection. | | |
diff --git a/actions/test/README.md b/actions/test/README.md
index c984f3b..f6dae4a 100644
--- a/actions/test/README.md
+++ b/actions/test/README.md
@@ -3,7 +3,7 @@
#  GitHub Action: Test
-

+
---
@@ -46,6 +46,9 @@ Action to test Node.js projects with support for coverage reporting and pull req
# This should be a script defined in your `package.json`.
# The command should generate coverage report files in a standard format (Cobertura XML, lcov, etc.).
#
+ # Vitest: `vitest run --reporter=default --reporter=junit --outputFile=junit.xml --coverage.enabled --coverage.reporter=lcov --coverage.reporter=text`
+ # Jest: `jest --ci --reporters=default --reporters=jest-junit --coverage`
+ #
# Default: `test:ci`
command: test:ci
@@ -86,6 +89,9 @@ Action to test Node.js projects with support for coverage reporting and pull req
| **`command`** | npm/pnpm/Yarn script command to run for testing. | **false** | `test:ci` |
| | This should be a script defined in your `package.json`. | | |
| | The command should generate coverage report files in a standard format (Cobertura XML, lcov, etc.). | | |
+| | | | |
+| | Vitest: `vitest run --reporter=default --reporter=junit --outputFile=junit.xml --coverage.enabled --coverage.reporter=lcov --coverage.reporter=text` | | |
+| | Jest: `jest --ci --reporters=default --reporters=jest-junit --coverage` | | |
| **`coverage`** | Code coverage reporter to use. Supported values: | **false** | `github` |
| | - `github`: Parse coverage reports via [parse-ci-reports](https://hoverkraft-tech/ci-github-common/actions/parse-ci-reports) action, with GitHub summaries/PR comments | | |
| | - `codecov`: Upload coverage to Codecov | | |