docs: Fix documentation errors in FAQ page #199
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| pull_request: | |
| branches: | |
| - "master" | |
| env: | |
| HUSKY: 0 | |
| jobs: | |
| check: | |
| name: Run ${{ matrix.script }} code check | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| script: ["format", "lint:ci", "typecheck:ci"] | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: ".nvmrc" | |
| cache: "pnpm" | |
| - name: Install Dependencies | |
| shell: bash | |
| run: pnpm install --frozen-lockfile | |
| - name: Run ${{ matrix.script }} | |
| run: | | |
| pnpm run ${{ matrix.script }} |