Skip to content

feat(docs): redesign GitHub Pages with kimi-cli style and language sw… #1

feat(docs): redesign GitHub Pages with kimi-cli style and language sw…

feat(docs): redesign GitHub Pages with kimi-cli style and language sw… #1

Workflow file for this run

name: CI (docs)
on:
pull_request:
paths:
- ".github/workflows/ci-docs.yml"
- ".github/workflows/pages.yml"
- "docs/**"
push:
branches:
- master
paths:
- ".github/workflows/ci-docs.yml"
- ".github/workflows/pages.yml"
- "docs/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: docs/package-lock.json
- name: Install docs dependencies
working-directory: docs
run: npm ci
- name: Build docs
working-directory: docs
run: npm run build