refactor: Document TrieBlob format (#8256) #20485
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: Lint | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths-ignore: | |
| - 'website/**' | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'website/**' | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Setup and Build | |
| uses: ./.github/actions/install-build-cache | |
| with: | |
| node-version: 22.x | |
| - name: Lint | |
| run: pnpm run lint | |
| - name: PR Auto Fix Lint | |
| if: github.event.ref == 'refs/heads/main' | |
| uses: ./.github/actions/pr | |
| with: | |
| body: | | |
| # Fix Lint Issues | |
| commit-message: 'ci: Fix Lint -- Workflow Bot' | |
| branch: update-fix-lint | |
| title: >- | |
| ci: Fix Lint -- Workflow Bot | |
| app_id: ${{ secrets.AUTOMATION_APP_ID }} | |
| app_private_key: ${{ secrets.AUTOMATION_PRIVATE_KEY }} |