chore(deps): update dependency logfire to ~=4.32.1 #1872
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: Frontend Checks | |
| on: ["push", "pull_request"] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: oven-sh/setup-bun@v2 | |
| - name: Install dependencies | |
| working-directory: frontend | |
| run: | | |
| bun install | |
| - name: Run svelte-check | |
| working-directory: frontend | |
| run: | | |
| bun check | |
| - name: Run prettier | |
| working-directory: frontend | |
| run: | | |
| bun prettier --check . --ignore-path ../.gitignore |