[front] fix: align credit pool loading and loaded section gaps #50847
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/lint checks (Biome) | |
| on: | |
| push: | |
| paths: | |
| - "**/*.js" | |
| - "**/*.jsx" | |
| - "**/*.ts" | |
| - "**/*.tsx" | |
| - "**/*.json" | |
| - "**/*.css" | |
| - "**/*.scss" | |
| - "**/*.md" | |
| - "**/*.yml" | |
| - "**/*.yaml" | |
| - biome.json | |
| - "**/biome.json" | |
| - "biome-plugins/**" | |
| - ".grit/**" | |
| - package.json | |
| - package-lock.json | |
| - .github/workflows/format-check.yml | |
| permissions: | |
| contents: read | |
| jobs: | |
| format-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Setup Node Dependencies | |
| uses: ./.github/actions/setup-node-deps | |
| - name: Install Grit CLI | |
| run: npm install --location=global @getgrit/cli | |
| - name: Format Check | |
| run: npm run format:ci | |
| - name: GritQL Plugin Tests | |
| run: npm run test:grit |