From 320a64695026097c2acccc95af6d49a2f9aed0fb Mon Sep 17 00:00:00 2001 From: Nils-Johan Gynther Date: Tue, 12 May 2026 19:54:03 +0200 Subject: [PATCH] feat: add microservice folders to workspace configuration --- .gitea/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 7e90ee7a..ea6b9ebb 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -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"