From fb39f826fe544015076a660e45d3697c38e2e909 Mon Sep 17 00:00:00 2001 From: Dominik Stumpf Date: Wed, 10 Jul 2024 00:18:00 +0200 Subject: [PATCH] ci: add biome to github actions --- .github/workflows/code-check.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/code-check.yml diff --git a/.github/workflows/code-check.yml b/.github/workflows/code-check.yml new file mode 100644 index 0000000000..3644249e0d --- /dev/null +++ b/.github/workflows/code-check.yml @@ -0,0 +1,18 @@ +name: Code check + +on: + push: + pull_request: + +jobs: + quality: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Biome + uses: biomejs/setup-biome@v2 + with: + version: latest + - name: Run Biome + run: biome ci .