GitHub Actions in Biome

From the Biome cheat sheet ยท Continuous Integration ยท verified Aug 2026

GitHub Actions

Install a pinned Biome binary with the first-party setup action.

yaml
name: Code quality

on:
  pull_request:
  push:

jobs:
  biome:
    runs-on: ubuntu-latest
    permissions:
      contents: read
    steps:
      - uses: actions/checkout@v5
      - uses: biomejs/setup-biome@v2
        with:
          version: 2.5.6
      - run: biome ci .
๐Ÿ“Œ Pin the CLI version instead of using latest
๐Ÿ’ก The setup action avoids a Node.js install for basic CI
๐Ÿ” Fetch history before comparing with the base branch
โšก Install dependencies first when config extends a package
github-actionscisetup-biome

Continue with Biome

Save the full cheat sheet or work through every related task.

More Biome tasks

Back to the full Biome cheat sheet