mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
135 lines
4.1 KiB
YAML
135 lines
4.1 KiB
YAML
name: Linting with biomejs
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
config-schema: ${{ steps.config-schema.outputs.success }}
|
|
shared: ${{ steps.shared.outputs.success }}
|
|
core: ${{ steps.core.outputs.success }}
|
|
backend: ${{ steps.backend.outputs.success }}
|
|
database: ${{ steps.database.outputs.success }}
|
|
dht-node: ${{ steps.dht-node.outputs.success }}
|
|
dlt-connector: ${{ steps.dlt-connector.outputs.success }}
|
|
federation: ${{ steps.federation.outputs.success }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Setup Biome
|
|
uses: biomejs/setup-biome@v2
|
|
with:
|
|
version: 2.0.0
|
|
- name: Lint - Config-Schema
|
|
id: config-schema
|
|
run: |
|
|
cd ./config-schema
|
|
biome ci .
|
|
echo "success=$([ $? -eq 0 ] && echo true || echo false)" >> $GITHUB_OUTPUT
|
|
- name: Lint - Shared
|
|
id: shared
|
|
run: |
|
|
cd ./shared
|
|
biome ci .
|
|
echo "success=$([ $? -eq 0 ] && echo true || echo false)" >> $GITHUB_OUTPUT
|
|
- name: Lint - Core
|
|
id: core
|
|
run: |
|
|
cd ./core
|
|
biome ci .
|
|
echo "success=$([ $? -eq 0 ] && echo true || echo false)" >> $GITHUB_OUTPUT
|
|
- name: Lint - Backend
|
|
id: backend
|
|
run: |
|
|
cd ./backend
|
|
biome ci .
|
|
echo "success=$([ $? -eq 0 ] && echo true || echo false)" >> $GITHUB_OUTPUT
|
|
- name: Lint - Database Up
|
|
id: database
|
|
run: |
|
|
cd ./database
|
|
biome ci .
|
|
echo "success=$([ $? -eq 0 ] && echo true || echo false)" >> $GITHUB_OUTPUT
|
|
- name: Lint - DHT Node
|
|
id: dht-node
|
|
run: |
|
|
cd ./dht-node
|
|
biome ci .
|
|
echo "success=$([ $? -eq 0 ] && echo true || echo false)" >> $GITHUB_OUTPUT
|
|
- name: Lint - DLT Connector
|
|
id: dlt-connector
|
|
run: |
|
|
cd ./dlt-connector
|
|
biome ci .
|
|
echo "success=$([ $? -eq 0 ] && echo true || echo false)" >> $GITHUB_OUTPUT
|
|
- name: Lint - Federation
|
|
id: federation
|
|
run: |
|
|
cd ./federation
|
|
biome ci .
|
|
echo "success=$([ $? -eq 0 ] && echo true || echo false)" >> $GITHUB_OUTPUT
|
|
|
|
lint_config_schema:
|
|
name: Lint - Config-Schema
|
|
needs: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check result from previous step
|
|
run: if [ "${{ needs.lint.outputs.config-schema }}" != "true" ]; then exit 1; fi
|
|
|
|
lint_shared:
|
|
name: Lint - Shared
|
|
needs: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check result from previous step
|
|
run: if [ "${{ needs.lint.outputs.shared }}" != "true" ]; then exit 1; fi
|
|
|
|
lint_core:
|
|
name: Lint - Core
|
|
needs: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check result from previous step
|
|
run: if [ "${{ needs.lint.outputs.core }}" != "true" ]; then exit 1; fi
|
|
|
|
lint_backend:
|
|
name: Lint - Backend
|
|
needs: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check result from previous step
|
|
run: if [ "${{ needs.lint.outputs.backend }}" != "true" ]; then exit 1; fi
|
|
|
|
lint_database:
|
|
name: Lint - Database Up
|
|
needs: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check result from previous step
|
|
run: if [ "${{ needs.lint.outputs.database }}" != "true" ]; then exit 1; fi
|
|
|
|
lint_dht_node:
|
|
name: Lint - DHT Node
|
|
needs: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check result from previous step
|
|
run: if [ "${{ needs.lint.outputs.dht-node }}" != "true" ]; then exit 1; fi
|
|
|
|
lint_dlt_connector:
|
|
name: Lint - DLT Connector
|
|
needs: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check result from previous step
|
|
run: if [ "${{ needs.lint.outputs.dlt-connector }}" != "true" ]; then exit 1; fi
|
|
|
|
lint_federation:
|
|
name: Lint - Federation
|
|
needs: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check result from previous step
|
|
run: if [ "${{ needs.lint.outputs.federation }}" != "true" ]; then exit 1; fi |