feat: add microservice folders to workspace configuration
Test Suite / backend-pr-quick (24.15.0) (push) Has been skipped
Test Suite / backend-full (24.15.0) (push) Failing after 21s
Test Suite / flutter-quality (push) Failing after 4s

This commit is contained in:
Nils-Johan Gynther
2026-05-12 19:54:03 +02:00
parent acb1e56506
commit 320a646950
+3 -3
View File
@@ -8,7 +8,7 @@ on:
jobs:
backend-pr-quick:
if: github.event_name == 'pull_request'
if: gitea.event_name == 'pull_request'
runs-on: backend-node24
strategy:
@@ -49,7 +49,7 @@ jobs:
run: npm run build
backend-full:
if: github.event_name == 'push'
if: gitea.event_name == 'push'
runs-on: backend-node24
strategy:
@@ -120,7 +120,7 @@ jobs:
- name: Set Flutter test mode
shell: bash
run: |
if [ "${{ github.event_name }}" = "pull_request" ]; then
if [ "${{ gitea.event_name }}" = "pull_request" ]; then
echo "FLUTTER_TEST_CMD=flutter test --reporter=compact" >> "$GITHUB_ENV"
else
echo "FLUTTER_TEST_CMD=flutter test" >> "$GITHUB_ENV"