From 912414fa5653648bc5516513a9e59ac19dfcb029 Mon Sep 17 00:00:00 2001 From: Untone Date: Sun, 4 Feb 2024 12:52:44 +0300 Subject: [PATCH] biome-auto --- .gitea/workflows/main.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml index b933a219..5f19fa78 100644 --- a/.gitea/workflows/main.yml +++ b/.gitea/workflows/main.yml @@ -29,11 +29,17 @@ jobs: - name: Run check types run: npm run typecheck - - name: Setup Biome - run: curl -L https://github.com/biomejs/biome/releases/download/cli%2Fv/biome-darwin-arm64 -o biome && chmod +x biome + quality: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Biome CLI + uses: biomejs/setup-biome@v2 - name: Run Biome - run: biome ci src/. + run: biome ci . test_with_playwright: needs: install_dependencies