Skip to content

Commit d06cf91

Browse files
authored
chore(deps): update to docusaurus 3.9 (#946)
2 parents 69b7a8e + 1c24b7f commit d06cf91

File tree

6 files changed

+2018
-1397
lines changed

6 files changed

+2018
-1397
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fetch-depth: 0
2222
- uses: actions/setup-node@v5
2323
with:
24-
node-version: 20
24+
node-version: 22
2525
cache: "npm"
2626
- name: Install dependencies
2727
run: npm ci

.github/workflows/lint-check-internal-links.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v5
1717
- uses: actions/setup-node@v5
1818
with:
19-
node-version: 20
19+
node-version: 22
2020
cache: "npm"
2121
- name: Install dependencies
2222
run: npm ci
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@v5
3131
- uses: actions/setup-node@v5
3232
with:
33-
node-version: 20
33+
node-version: 22
3434
cache: "npm"
3535
- name: Install dependencies
3636
run: npm ci
@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/checkout@v5
4545
- uses: actions/setup-node@v5
4646
with:
47-
node-version: 20
47+
node-version: 22
4848
cache: "npm"
4949
- name: Install dependencies
5050
run: npm ci
@@ -58,7 +58,7 @@ jobs:
5858
- uses: actions/checkout@v5
5959
- uses: actions/setup-node@v5
6060
with:
61-
node-version: 20
61+
node-version: 22
6262
cache: "npm"
6363
- name: Install dependencies
6464
run: npm ci

.github/workflows/test-javascript-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v5
2323
- uses: actions/setup-node@v5
2424
with:
25-
node-version: 20
25+
node-version: 22
2626
cache: "npm"
2727
cache-dependency-path: "examples/developer-hub-javascript/package-lock.json"
2828
- name: Install dependencies

docusaurus.config.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,13 @@ const config: Config = {
2323
onBrokenAnchors: "throw",
2424
onDuplicateRoutes: "throw",
2525
onBrokenLinks: "throw",
26-
onBrokenMarkdownLinks: "throw",
26+
27+
markdown: {
28+
hooks: {
29+
onBrokenMarkdownImages: "throw",
30+
onBrokenMarkdownLinks: "throw",
31+
},
32+
},
2733

2834
// Even if you don't use internationalization, you can use this field to set
2935
// useful metadata like html lang. For example, if your site is Chinese, you

0 commit comments

Comments
 (0)