🧹 Code health: Remove unused setUp function #368
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: Code quality | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Setup mise | |
| uses: jdx/mise-action@v4 | |
| with: | |
| install: true | |
| cache: true | |
| experimental: true | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Run JavaScript quality checks | |
| run: bun run lint:js | |
| - name: Run formatting checks | |
| run: bun run format:check |