Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v5
with:
node-version: 20
node-version: 22
cache: "npm"
- name: Install dependencies
run: npm ci
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint-check-internal-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 20
node-version: 22
cache: "npm"
- name: Install dependencies
run: npm ci
Expand All @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 20
node-version: 22
cache: "npm"
- name: Install dependencies
run: npm ci
Expand All @@ -44,7 +44,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 20
node-version: 22
cache: "npm"
- name: Install dependencies
run: npm ci
Expand All @@ -58,7 +58,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 20
node-version: 22
cache: "npm"
- name: Install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-javascript-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 20
node-version: 22
cache: "npm"
cache-dependency-path: "examples/developer-hub-javascript/package-lock.json"
- name: Install dependencies
Expand Down
8 changes: 7 additions & 1 deletion docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@ const config: Config = {
onBrokenAnchors: "throw",
onDuplicateRoutes: "throw",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "throw",

markdown: {
hooks: {
onBrokenMarkdownImages: "throw",
onBrokenMarkdownLinks: "throw",
},
},

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