24 lines
619 B
YAML

name: Linting with biomejs
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Biome
uses: biomejs/setup-biome@v2
with:
version: latest
- name: Lint - Config-Schema
run: cd ./config-schema && biome ci .
- name: Lint - Backend
run: cd ./backend && biome ci .
- name: Lint - Database Up
run: cd ./database && biome ci .
- name: Lint - DHT Node
run: cd ./dht-node && biome ci .
- name: Lint - Federation
run: cd ./federation && biome ci .