fix: show all root items in suggestions (#1804) #1447
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| format: | |
| runs-on: depot-ubuntu-24.04 | |
| container: registry.depot.dev/dwd5s9sq7d:arch-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Check C++ formatting | |
| run: make check-format | |
| - name: Check TypeScript formatting | |
| working-directory: src/typescript | |
| run: npx @biomejs/biome format |