Skip to content

Commit f85dcd5

Browse files
authored
Merge pull request #279 from JohT/fix/markdown-link-check-3-13-6-workaround
Fix broken link check using workaround
2 parents 25eb4ea + b7c4581 commit f85dcd5

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/check-links-in-documentation.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,11 @@ jobs:
3131
startsWith(github.event.pull_request.title, 'Update dependency AxonFramework') &&
3232
github.event.pull_request.user.type == 'Bot'
3333
run: |
34-
echo "Skipping link check on AxonFramework updates since the updated links tto the reports will only be active "
34+
echo "Skipping link check on AxonFramework updates since the updated links to the reports will only be active "
3535
echo "skip_link_check=true" >> $GITHUB_ENV
3636
3737
- name: Check links in top level documentation Markdown files
3838
if: ${{ ! env.skip_link_check}}
39-
run: npx --yes [email protected] --config=markdown-lint-check-config.json README.md COMMANDS.md GETTING_STARTED.md
39+
run: npx --yes [email protected] --verbose --alive=200,202,206 --retry README.md COMMANDS.md GETTING_STARTED.md
40+
# Temporarily, everything is done using command line options rather than with the config file, which doesn't seem to work.
41+
# Maybe related to https://github.com/tcort/markdown-link-check/issues/379 ?

GETTING_STARTED.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Use these optional command line options as needed:
2424
./scripts/examples/analyzeAxonFramework.sh --report CSV
2525
```
2626

27-
- Only explore the graph manually in the [browser](http://localhost:7474/browser). Skip all automated reports. Example:
27+
- Only explore the graph manually in the browser (`http://localhost:7474/browser`). Skip all automated reports. Example:
2828

2929
```shell
3030
./scripts/examples/analyzeAxonFramework.sh --explore
@@ -108,7 +108,7 @@ Use these optional command line options as needed:
108108
./../../scripts/analysis/analyze.sh --explore
109109
```
110110
111-
👉 Open your browser and login to your [local Neo4j Web UI](http://localhost:7474/browser) with "neo4j" as user and the initial password you've chosen.
111+
👉 Open your browser and login to your local Neo4j Web UI (`http://localhost:7474/browser`) with "neo4j" as user and the initial password you've chosen.
112112

113113
## GitHub Actions
114114

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ The [Code Structure Analysis Pipeline](./.github/workflows/java-code-analysis.ym
164164
👉 To get started from scratch see [GETTING_STARTED.md](./GETTING_STARTED.md).
165165

166166
- How can i explore the Graph manually?
167-
👉 After analysis [start Neo4j](./COMMANDS.md#start-neo4j-graph-database) and open the [Neo4j Web UI](http://localhost:7474/browser).
167+
👉 After analysis [start Neo4j](./COMMANDS.md#start-neo4j-graph-database) and open the Neo4j Web UI (`http://localhost:7474/browser`).
168168

169169
- How can i add a CSV report to the pipeline?
170170
👉 Put your new cypher query into the [cypher](./cypher) directory or a suitable (new) sub directory.

0 commit comments

Comments
 (0)