mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
24 lines
619 B
YAML
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 . |