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.