Add configuration option for MC-159283 to docs #1511
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: "Format check" | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| format: | |
| # run on all push events or on PR syncs not from the same repo | |
| if: github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: "setup node and pnpm" | |
| uses: ./.github/actions/setup-node-pnpm | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Check format | |
| run: pnpm format:check |