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