Skip to content

fix: source toggle list stability, website chrome polish, and PlantUML docs #38

fix: source toggle list stability, website chrome polish, and PlantUML docs

fix: source toggle list stability, website chrome polish, and PlantUML docs #38

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Verify
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v6
with:
version: 11.1.0
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check whitespace
run: git diff --check
- name: Run tests
run: pnpm test
- name: Build website
run: pnpm build
- name: Build library
run: pnpm build:lib
- name: Pack dry run
run: pnpm pack --dry-run