From 14acd6fa943b5b81d757b1164a9cbff519553156 Mon Sep 17 00:00:00 2001 From: Hannes Michalek Date: Fri, 13 Dec 2024 14:19:36 +0100 Subject: [PATCH] Move pipeline setup to project root --- .../workflows/frontend-jobs.yml | 0 .github/workflows/pipeline.yml | 17 ++++++++++++++++- frontend/.github/workflows/pipeline.yml | 16 ---------------- 3 files changed, 16 insertions(+), 17 deletions(-) rename {frontend/.github => .github}/workflows/frontend-jobs.yml (100%) delete mode 100644 frontend/.github/workflows/pipeline.yml diff --git a/frontend/.github/workflows/frontend-jobs.yml b/.github/workflows/frontend-jobs.yml similarity index 100% rename from frontend/.github/workflows/frontend-jobs.yml rename to .github/workflows/frontend-jobs.yml diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index a82d1b41..d71e819e 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -1 +1,16 @@ -#placeholder +name: "CI Pipeline" + +on: + push: + branches: [main] + paths-ignore: + - "**/*.md" + pull_request: + branches: [main] + # Allow to run this workflow manually + workflow_dispatch: + +jobs: + frontend-checks: + uses: ./.github/workflows/frontend-jobs.yml + secrets: inherit diff --git a/frontend/.github/workflows/pipeline.yml b/frontend/.github/workflows/pipeline.yml deleted file mode 100644 index d71e819e..00000000 --- a/frontend/.github/workflows/pipeline.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: "CI Pipeline" - -on: - push: - branches: [main] - paths-ignore: - - "**/*.md" - pull_request: - branches: [main] - # Allow to run this workflow manually - workflow_dispatch: - -jobs: - frontend-checks: - uses: ./.github/workflows/frontend-jobs.yml - secrets: inherit