profilePage/.forgejo/workflows/biomejs.yml
creations 6a78827382
Some checks failed
Code quality checks / quality (push) Failing after 6s
update flow
2025-04-10 06:04:29 -04:00

21 lines
453 B
YAML

name: Code quality checks
on:
push:
pull_request:
jobs:
quality:
runs-on: docker
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Biome
run: |
curl -L https://github.com/biomejs/biome/releases/download/cli%2Fv1.5.0/biome-linux-x64 -o biome
chmod +x biome
mv biome /usr/local/bin/biome
- name: Run Biome
run: biome ci --config-path ./biome.json .