This repository was archived by the owner on Aug 29, 2025. It is now read-only.
Update name in Wrangler configuration file to match deployed Worker #192
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: | |
| branches: [main, dev] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install Dependancies | |
| run: bun i | |
| - name: Setup Biome | |
| uses: biomejs/setup-biome@v2 | |
| with: | |
| version: latest | |
| - name: Run Biome | |
| if: github.event_name == 'pull_request' | |
| run: biome ci . | |
| - name: Apply Biome | |
| if: github.event_name == 'push' | |
| run: biome check --write --unsafe . | |
| - name: Commit Back | |
| if: github.event_name == 'push' | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: Biome Code Quality Update | |
| commit_options: "--no-verify --signoff" |