24 lines
579 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: biome ci ./config-schema
- name: Lint - Backend
run: biome ci ./backend
- name: Lint - Database Up
run: biome ci ./database
- name: Lint - DHT Node
run: biome ci ./dht-node
- name: Lint - Federation
run: biome ci ./federation