Skip to content

docs(readme): use absolute URLs for logo and contributing link #1

docs(readme): use absolute URLs for logo and contributing link

docs(readme): use absolute URLs for logo and contributing link #1

Workflow file for this run

name: Check Docs
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: docs/package-lock.json
- name: Install dependencies
working-directory: docs
run: npm ci
- name: Build with VitePress
working-directory: docs
run: npm run build