-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update docs build to create multi-version builds.
- Loading branch information
1 parent
e6460af
commit db7be50
Showing
7 changed files
with
1,304 additions
and
481 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Run Docs Tests | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
docs-tests: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-24.04 | ||
node-version: | ||
- '18' | ||
steps: | ||
# Install deps and cache | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Cache version builds | ||
uses: actions/cache@v4 | ||
with: | ||
key: lando-mvb-docs | ||
path: docs/.vitepress/cache/@lando/mvb | ||
save-always: true | ||
- name: Install node ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: npm | ||
- name: Install NPM dependencies | ||
run: npm clean-install --prefer-offline --frozen-lockfile | ||
|
||
# Run tests | ||
- name: Run linter | ||
run: npm run lint | ||
- name: Test mvb | ||
run: npm run docs:mvb | ||
- name: Test build | ||
run: npm run docs:build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
description: All Other documentation versions | ||
title: Docuverse | ||
contributors: false | ||
lastUpdated: false | ||
editLink: false | ||
next: false | ||
prev: false | ||
--- | ||
# Docuverse | ||
|
||
<br /> | ||
<br /> | ||
|
||
<div | ||
v-for="link in links" | ||
:key="link.text" | ||
class="version-link" | ||
> | ||
<VPLVersionLink | ||
:text="link.text" | ||
:href="link.href" | ||
:prerelease="link.prerelease" | ||
:stable="link.stable" | ||
:edge="link.edge" | ||
/> | ||
</div> | ||
|
||
<br /> | ||
|
||
<div> | ||
<VPLVersionLink :dev="true" :text="aliases.dev" :href="aliasLinks.dev" /> | ||
</div> | ||
|
||
<script setup> | ||
import {useTags} from '@lando/vitepress-theme-default-plus'; | ||
import {VPLCollectionPage, VPLCollectionPageSection, VPLCollectionPageTitle, VPLVersionLink} from '@lando/vitepress-theme-default-plus'; | ||
|
||
const {aliases, aliasLinks, links} = useTags(); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.