docs: process documents and release tooling for the 1.0-beta release #434
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Run lint and format check | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| lint-and-format: | |
| runs-on: ubuntu-latest | |
| env: | |
| PNPM_CONFIG_FROZEN_LOCKFILE: "true" | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - name: Install packages | |
| run: pnpm install | |
| - name: Run ESLint | |
| run: pnpm lint | |
| - name: Check Prettier formatting | |
| run: pnpm format:check |