├── .cspell.json ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── welcome.txt ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── codeql.yml │ ├── dependabot.yml │ ├── mega-linter.yml │ ├── release.yml │ └── sonar.yml ├── .gitignore ├── .jscpd.json ├── .markdownlintignore ├── .mega-linter.yml ├── .nvmrc ├── .prettierignore ├── .release-please-manifest.json ├── .trivyignore ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__ ├── action-docs-action.test.ts ├── action-docs-workflow.test.ts ├── cli.test.ts ├── fixtures │ ├── action │ │ ├── action.yml │ │ ├── action_deprecated.input │ │ ├── action_deprecated.output │ │ ├── action_docs_action_action.yml │ │ ├── action_docs_action_readme.input │ │ ├── action_docs_action_readme.output │ │ ├── action_usage_readme.input │ │ ├── action_usage_readme.output │ │ ├── all_fields_action.output │ │ ├── all_fields_action.yml │ │ ├── all_fields_action.yml.crlf │ │ ├── all_fields_action_toc1.output │ │ ├── all_fields_action_toc3_cli.output │ │ ├── all_fields_one_annotation.input │ │ ├── all_fields_one_annotation.output │ │ ├── all_fields_readme.input │ │ ├── all_fields_readme.input.crlf │ │ ├── all_fields_readme.output │ │ ├── all_fields_readme.output.crlf │ │ ├── all_fields_readme_filled.input │ │ ├── all_fields_readme_filled.output │ │ ├── all_fields_readme_header.output │ │ ├── all_fields_usage_readme.input │ │ ├── all_fields_usage_readme.output │ │ ├── default-with-header.output │ │ ├── default.output │ │ ├── deprecated_input_action.input │ │ ├── deprecated_input_action.output │ │ ├── deprecated_input_action.yml │ │ ├── minimal_action.output │ │ ├── minimal_action.yml │ │ ├── two_actions_readme.input │ │ └── two_actions_readme.output │ └── workflow │ │ ├── action_docs_workflow.yml │ │ ├── action_docs_workflow_readme.input │ │ ├── action_docs_workflow_readme.output │ │ ├── all_fields_one_annotation.input │ │ ├── all_fields_one_annotation.output │ │ ├── all_fields_readme.input │ │ ├── all_fields_readme.input.crlf │ │ ├── all_fields_readme.output │ │ ├── all_fields_readme.output.crlf │ │ ├── all_fields_readme_filled.input │ │ ├── all_fields_readme_filled.output │ │ ├── all_fields_usage_readme.input │ │ ├── all_fields_usage_readme.output │ │ ├── all_fields_workflow.output │ │ ├── all_fields_workflow.yml │ │ ├── all_fields_workflow.yml.crlf │ │ ├── all_fields_workflow_toc1.output │ │ ├── all_fields_workflow_toc3_cli.output │ │ ├── default.output │ │ ├── minimal_workflow.output │ │ ├── minimal_workflow.yml │ │ ├── secrets_workflow.output │ │ ├── secrets_workflow.yml │ │ ├── two_workflows_readme.input │ │ ├── two_workflows_readme.output │ │ ├── workflow.yml │ │ ├── workflow_usage_readme.input │ │ └── workflow_usage_readme.output └── linebreak.test.ts ├── package.json ├── sonar-project.properties ├── src ├── action-docs.ts ├── cli.ts ├── index.ts └── linebreak.ts ├── tsconfig.json ├── vitest.config.ts └── yarn.lock /.cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.cspell.json -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/welcome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.devcontainer/welcome.txt -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | jest.config.js 5 | __tests__/ 6 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.github/workflows/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.github/workflows/mega-linter.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.github/workflows/sonar.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscpd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.jscpd.json -------------------------------------------------------------------------------- /.markdownlintignore: -------------------------------------------------------------------------------- 1 | CHANGELOG.md 2 | -------------------------------------------------------------------------------- /.mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.mega-linter.yml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.release-please-manifest.json -------------------------------------------------------------------------------- /.trivyignore: -------------------------------------------------------------------------------- 1 | # Healthcheck isn't necessary in a devcontainer 2 | AVD-DS-0026 3 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/action-docs-action.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/action-docs-action.test.ts -------------------------------------------------------------------------------- /__tests__/action-docs-workflow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/action-docs-workflow.test.ts -------------------------------------------------------------------------------- /__tests__/cli.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/cli.test.ts -------------------------------------------------------------------------------- /__tests__/fixtures/action/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/action.yml -------------------------------------------------------------------------------- /__tests__/fixtures/action/action_deprecated.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/action_deprecated.input -------------------------------------------------------------------------------- /__tests__/fixtures/action/action_deprecated.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/action_deprecated.output -------------------------------------------------------------------------------- /__tests__/fixtures/action/action_docs_action_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/action_docs_action_action.yml -------------------------------------------------------------------------------- /__tests__/fixtures/action/action_docs_action_readme.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/action_docs_action_readme.input -------------------------------------------------------------------------------- /__tests__/fixtures/action/action_docs_action_readme.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/action_docs_action_readme.output -------------------------------------------------------------------------------- /__tests__/fixtures/action/action_usage_readme.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/action_usage_readme.input -------------------------------------------------------------------------------- /__tests__/fixtures/action/action_usage_readme.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/action_usage_readme.output -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_action.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_action.output -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_action.yml -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_action.yml.crlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_action.yml.crlf -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_action_toc1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_action_toc1.output -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_action_toc3_cli.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_action_toc3_cli.output -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_one_annotation.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_one_annotation.input -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_one_annotation.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_one_annotation.output -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_readme.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_readme.input -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_readme.input.crlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_readme.input.crlf -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_readme.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_readme.output -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_readme.output.crlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_readme.output.crlf -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_readme_filled.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_readme_filled.input -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_readme_filled.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_readme_filled.output -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_readme_header.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_readme_header.output -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_usage_readme.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_usage_readme.input -------------------------------------------------------------------------------- /__tests__/fixtures/action/all_fields_usage_readme.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/all_fields_usage_readme.output -------------------------------------------------------------------------------- /__tests__/fixtures/action/default-with-header.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/default-with-header.output -------------------------------------------------------------------------------- /__tests__/fixtures/action/default.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/default.output -------------------------------------------------------------------------------- /__tests__/fixtures/action/deprecated_input_action.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/deprecated_input_action.input -------------------------------------------------------------------------------- /__tests__/fixtures/action/deprecated_input_action.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/deprecated_input_action.output -------------------------------------------------------------------------------- /__tests__/fixtures/action/deprecated_input_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/deprecated_input_action.yml -------------------------------------------------------------------------------- /__tests__/fixtures/action/minimal_action.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/minimal_action.output -------------------------------------------------------------------------------- /__tests__/fixtures/action/minimal_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/minimal_action.yml -------------------------------------------------------------------------------- /__tests__/fixtures/action/two_actions_readme.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/two_actions_readme.input -------------------------------------------------------------------------------- /__tests__/fixtures/action/two_actions_readme.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/action/two_actions_readme.output -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/action_docs_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/action_docs_workflow.yml -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/action_docs_workflow_readme.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/action_docs_workflow_readme.input -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/action_docs_workflow_readme.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/action_docs_workflow_readme.output -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/all_fields_one_annotation.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/all_fields_one_annotation.input -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/all_fields_one_annotation.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/all_fields_one_annotation.output -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/all_fields_readme.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/all_fields_readme.input -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/all_fields_readme.input.crlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/all_fields_readme.input.crlf -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/all_fields_readme.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/all_fields_readme.output -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/all_fields_readme.output.crlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/all_fields_readme.output.crlf -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/all_fields_readme_filled.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/all_fields_readme_filled.input -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/all_fields_readme_filled.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/all_fields_readme_filled.output -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/all_fields_usage_readme.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/all_fields_usage_readme.input -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/all_fields_usage_readme.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/all_fields_usage_readme.output -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/all_fields_workflow.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/all_fields_workflow.output -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/all_fields_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/all_fields_workflow.yml -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/all_fields_workflow.yml.crlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/all_fields_workflow.yml.crlf -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/all_fields_workflow_toc1.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/all_fields_workflow_toc1.output -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/all_fields_workflow_toc3_cli.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/all_fields_workflow_toc3_cli.output -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/default.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/default.output -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/minimal_workflow.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/minimal_workflow.output -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/minimal_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/minimal_workflow.yml -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/secrets_workflow.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/secrets_workflow.output -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/secrets_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/secrets_workflow.yml -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/two_workflows_readme.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/two_workflows_readme.input -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/two_workflows_readme.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/two_workflows_readme.output -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/workflow.yml -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/workflow_usage_readme.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/workflow_usage_readme.input -------------------------------------------------------------------------------- /__tests__/fixtures/workflow/workflow_usage_readme.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/fixtures/workflow/workflow_usage_readme.output -------------------------------------------------------------------------------- /__tests__/linebreak.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/__tests__/linebreak.test.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/package.json -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/action-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/src/action-docs.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/linebreak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/src/linebreak.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/action-docs/HEAD/yarn.lock --------------------------------------------------------------------------------