diff --git a/.forgejo/workflows/biomejs.yml b/.forgejo/workflows/biomejs.yml new file mode 100644 index 0000000..fcdb097 --- /dev/null +++ b/.forgejo/workflows/biomejs.yml @@ -0,0 +1,21 @@ +name: Code quality checks + +on: + push: + pull_request: + +jobs: + quality: + runs-on: docker + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install Biome + run: | + curl -L https://github.com/biomejs/biome/releases/download/cli%2Fv1.5.0/biome-linux-x64 -o biome + chmod +x biome + mv biome /usr/local/bin/biome + + - name: Run Biome + run: biome ci .