Added support for coloring unfocused windows different, part deux. #53
Workflow file for this run
This file contains 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: Lint the code | |
on: | |
push: | |
paths: | |
- 'src/**' | |
- '**/*.json' | |
pull_request: | |
paths: | |
- 'src/**' | |
- '**/*.json' | |
jobs: | |
lint: | |
name: Lint the code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Set up Biome | |
uses: biomejs/setup-biome@v2 | |
with: | |
version: latest | |
- name: Run Biome | |
run: biome ci . |