chore: add agent-browser skill for browser automation/verification #240
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: Biome | |
| on: [pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| env: | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
| TURBO_REMOTE_ONLY: true | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Biome | |
| uses: biomejs/setup-biome@v2 | |
| with: | |
| # Pin to match `@biomejs/biome` in package.json devDependencies + the | |
| # version embedded in biome.jsonc's `$schema`. `latest` rides the | |
| # bleeding edge and surfaces new lint rules that the local toolchain | |
| # doesn't yet enforce (e.g. 2.4.x added stricter export sort rules). | |
| version: 2.3.11 | |
| - name: Run Biome | |
| run: biome ci . |