mirror of
https://github.com/kovetskiy/mark.git
synced 2026-04-20 05:12:35 +00:00
Add markdown lint
This commit is contained in:
29
.github/ISSUE_TEMPLATE/bug_report.md
vendored
29
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -7,14 +7,18 @@ assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**What happened?**
|
||||
## What happened?
|
||||
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
**What did you expect to happen?**
|
||||
## What did you expect to happen?
|
||||
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
**How can we reproduce the behavior you experienced?**
|
||||
## How can we reproduce the behavior you experienced?
|
||||
|
||||
Steps to reproduce the behavior:
|
||||
|
||||
1. Step 1
|
||||
2. Step 2
|
||||
3. Step 3
|
||||
@@ -22,17 +26,18 @@ Steps to reproduce the behavior:
|
||||
|
||||
In case this is related to specific markdown, please provide a minimal markdown example here.
|
||||
|
||||
**Information (please complete the following information)**
|
||||
## Further Information (please complete the following information)
|
||||
|
||||
- Mark Version (`mark --version`): [e.g. v9.1.4]
|
||||
- Mark Parameters: [e.g. `--drop-h1 --title-from-h1`]
|
||||
- Confluence Hosting: [e.g. Cloud, Server or Datacenter]
|
||||
- Confluence Version: [e.g. v7.13]
|
||||
- Environment specific Information: [e.g. running in Github Actions, or on Mac OS X, etc.]
|
||||
* Mark Version (`mark --version`): [e.g. v9.1.4]
|
||||
* Mark Parameters: [e.g. `--drop-h1 --title-from-h1`]
|
||||
* Confluence Hosting: [e.g. Cloud, Server or Datacenter]
|
||||
* Confluence Version: [e.g. v7.13]
|
||||
* Environment specific Information: [e.g. running in Github Actions, or on Mac OS X, etc.]
|
||||
|
||||
## Logs or other output
|
||||
|
||||
**Logs or other output**
|
||||
Please provide logs, other kind of output here.
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the problem here.
|
||||
## Additional context
|
||||
|
||||
Add any other context about the problem here.
|
||||
|
||||
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
@@ -31,6 +31,16 @@ jobs:
|
||||
- name: golangci-lint
|
||||
uses: golangci/golangci-lint-action@v3
|
||||
|
||||
# Runs markdown-lint on the markdown files
|
||||
ci-markdown-lint:
|
||||
name: ci-markdown-lint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out code into the Go module directory
|
||||
uses: actions/checkout@v4
|
||||
- name: markdownlint-cli2-action
|
||||
uses: DavidAnson/markdownlint-cli2-action@v14
|
||||
|
||||
# Executes Unit Tests
|
||||
ci-unit-tests:
|
||||
name: ci-unit-tests
|
||||
|
||||
Reference in New Issue
Block a user