ipv4.army/.forgejo/workflows/biomejs.yml
wont-stream 571aab24ed
Some checks failed
Code quality checks / biome (push) Failing after 9s
Add biome.js configuration and integrate code quality checks
2025-04-10 19:04:20 -04:00

24 lines
No EOL
488 B
YAML

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