diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 81fc163..2bf038c 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -10,9 +10,11 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Setup Biome - uses: biomejs/setup-biome@v2 - with: - version: latest + + - name: Install Biome + run: | + curl -fsSL https://biomejs.dev/install.sh | bash + echo "$HOME/.biome/bin" >> $GITHUB_PATH + - name: Run Biome - run: biome ci . \ No newline at end of file + run: biome ci .