From 2b78629fd02b0f1b0e95692944287c9887cc015c Mon Sep 17 00:00:00 2001 From: Vargha Csongor Date: Thu, 27 Mar 2025 20:26:33 +0100 Subject: [PATCH] fixup syntax in pipeline --- .github/workflows/db_adapter_ci.yml | 6 +++--- .github/workflows/svelte_ci.yml | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/db_adapter_ci.yml b/.github/workflows/db_adapter_ci.yml index cbb2de0..c27cc76 100644 --- a/.github/workflows/db_adapter_ci.yml +++ b/.github/workflows/db_adapter_ci.yml @@ -2,10 +2,8 @@ name: Database Adapter Continues Integration on: pull_request: - branches: - - feature/migrate-100-percent-to-svelte paths: - - "apps/db-adapter/*" + - "apps/db-adapter**" jobs: golangci: @@ -22,11 +20,13 @@ jobs: with: version: latest working-directory: 'apps/db-adapter' + test: uses: ./.github/workflows/go_test.yml needs: golangci with: working-directory: 'apps/db-adapter' + build: needs: test uses: ./.github/workflows/docker_build.yml diff --git a/.github/workflows/svelte_ci.yml b/.github/workflows/svelte_ci.yml index aef54e1..0bbf814 100644 --- a/.github/workflows/svelte_ci.yml +++ b/.github/workflows/svelte_ci.yml @@ -1,15 +1,16 @@ name: Frontend Continuous Integration + on: pull_request: - branches: - - feature/migrate-100-percent-to-svelte paths: - - "apps/app/*" + - "apps/app**" + jobs: lint: uses: ./.github/workflows/svelte_lint.yml with: working-directory: 'apps/app' + build: needs: lint uses: ./.github/workflows/svelte_test.yml