Skip to content

feat: add distributed stateful job runtime #11

feat: add distributed stateful job runtime

feat: add distributed stateful job runtime #11

Workflow file for this run

name: Documentation check
on:
pull_request:
paths:
- 'docs/**'
- 'README.md'
- 'README_zh.md'
- '.github/workflows/docs-check.yml'
push:
branches: [main]
paths:
- 'docs/**'
- 'README.md'
- 'README_zh.md'
jobs:
docs-check:
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
cache-dependency-path: docs/pnpm-lock.yaml
- run: pnpm install --frozen-lockfile
- run: pnpm docs:check
- run: pnpm build