weather #3

Merged
arif merged 25 commits from weather into main 2025-08-29 14:10:55 +02:00
2 changed files with 9 additions and 6 deletions
Showing only changes of commit a18a1bfc9b - Show all commits

View File

@@ -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]

View File

@@ -5,7 +5,8 @@
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false
"ignoreUnknown": false,
"includes": ["!**/dist/**"]
},
"formatter": {
"enabled": true,