ci/cd: run svelte check and unit tests in breaking branches

This commit is contained in:
Elias Schneider
2026-06-16 09:30:04 +02:00
parent 3d9d4de619
commit 83b45f682d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ on:
- "frontend/tsconfig.json"
- "frontend/svelte.config.js"
pull_request:
branches: [main]
branches: [main, breaking/**]
paths:
- "frontend/src/**"
- ".github/svelte-check-matcher.json"
+2 -2
View File
@@ -1,11 +1,11 @@
name: Unit Tests
on:
push:
branches: [ main ]
branches: [main]
paths:
- "backend/**"
pull_request:
branches: [ main ]
branches: [main, breaking/**]
paths:
- "backend/**"