add workflow
All checks were successful
Code quality checks / biome (push) Successful in 12s

This commit is contained in:
creations 2025-04-11 04:08:17 -04:00
parent d6a25705b4
commit 1ce735f9ae
Signed by: creations
GPG key ID: 8F553AA4320FC711

View file

@ -0,0 +1,24 @@
name: Code quality checks
on:
push:
pull_request:
jobs:
biome:
runs-on: docker
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Bun
run: |
curl -fsSL https://bun.sh/install | bash
export BUN_INSTALL="$HOME/.bun"
echo "$BUN_INSTALL/bin" >> $GITHUB_PATH
- name: Install Dependencies
run: bun install
- name: Run Biome with verbose output
run: bunx biome ci . --verbose