From cfae55583adbc01e71f7d04e7f4f095be1d7cdd2 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Thu, 27 Mar 2025 22:12:53 +0100 Subject: [PATCH] backend/frontend check ci --- .github/workflows/backend-check.yml | 4 ++++ .github/workflows/frontend-check.yml | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/backend-check.yml b/.github/workflows/backend-check.yml index 309fa4d994..cc45c6ed2f 100644 --- a/.github/workflows/backend-check.yml +++ b/.github/workflows/backend-check.yml @@ -1,5 +1,9 @@ name: Backend check on: + workflow_run: + workflows: ["Change versions"] + types: + - completed pull_request: types: [opened, synchronize, reopened] paths: diff --git a/.github/workflows/frontend-check.yml b/.github/workflows/frontend-check.yml index 4245949f33..8fa486caab 100644 --- a/.github/workflows/frontend-check.yml +++ b/.github/workflows/frontend-check.yml @@ -1,5 +1,9 @@ name: check frontend build on: + workflow_run: + workflows: ["Change versions"] + types: + - completed pull_request: types: [opened, synchronize, reopened] paths: @@ -22,5 +26,6 @@ jobs: node-version: 18 - name: "npm check" timeout-minutes: 5 - run: cd frontend && npm ci && npm run generate-backend-client && npm run + run: + cd frontend && npm ci && npm run generate-backend-client && npm run check