Skip to content

docs: change docs

docs: change docs #98

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install
run: pnpm install --no-frozen-lockfile
- name: Build Theme
run: pnpm build
- name: Build Demo
run: pnpm demo:build
- name: Linter
run: pnpm lint