Skip to content

Merge pull request #22 from JordanViknar/biome #23

Merge pull request #22 from JordanViknar/biome

Merge pull request #22 from JordanViknar/biome #23

Workflow file for this run

name: biome-lint-check
on: [ push, pull_request ]
jobs:
biome-lint-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache Bun dependencies
uses: actions/cache@v4
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }}
restore-keys: |
${{ runner.os }}-bun-
- uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- uses: biomejs/setup-biome@v2
- name: Run Biome
run: biome ci .