Skip to content

Commit

Permalink
docs: fixed compile error (#6312)
Browse files Browse the repository at this point in the history
* ci: fix

* docs: fix

---------

Co-authored-by: Carlos Rodriguez <[email protected]>
  • Loading branch information
srdtrk and Carlos Rodriguez authored May 15, 2024
1 parent 340ef64 commit 0923e49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/check-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
branches:
- main
paths:
- './docs'
- 'docs/**'
- '.github/workflows/check-docs.yml'

jobs:
check-docs-build:
Expand All @@ -20,8 +21,9 @@ jobs:
with:
node-version: 18
cache: npm
cache-dependency-path: docs/package-lock.json

- name: Install dependencies
run: npm ci
run: cd docs && npm ci
- name: Test build website
run: npm run build
run: cd docs && npm run build
2 changes: 1 addition & 1 deletion docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const config = {
path: "v8",
banner: "none",
},
"v7.4.x": {
"v7.5.x": {
path: "v7",
banner: "none",
},
Expand Down

0 comments on commit 0923e49

Please sign in to comment.