diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 113f506..55f9078 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,11 @@ jobs: with: name: project path: . + - name: Create Build Artifact + uses: christopherhx/gitea-upload-artifact@v4 + with: + name: build + path: dist lint: runs-on: ubuntu-latest @@ -38,11 +43,8 @@ jobs: run: bun install -g biome - name: Run Biome lint run: biome lint . - - name: Create Build Artifact - uses: christopherhx/gitea-upload-artifact@v4 - with: - name: project - path: dist + - name: Run Biome format check + run: biome format . build-and-push-docker: needs: [build] diff --git a/biome.json b/biome.json index 8a3e2dc..9635976 100644 --- a/biome.json +++ b/biome.json @@ -5,7 +5,8 @@ "useIgnoreFile": false }, "files": { - "ignoreUnknown": false + "ignoreUnknown": false, + "includes": ["!**/dist/**"] }, "formatter": { "enabled": true,