sync clang format #2033
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: PR Checks | |
| on: pull_request | |
| jobs: | |
| pr-checks: | |
| runs-on: ubuntu-24.04 | |
| name: Check and lint PR | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '20' | |
| - name: Install | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| run_install: true | |
| - name: Lint commits | |
| run: pnpm test:commitlint --from=${{ github.event.pull_request.base.sha }} |