backend/frontend check ci

This commit is contained in:
Ruben Fiszel
2025-03-27 22:12:53 +01:00
parent 466750752f
commit cfae55583a
2 changed files with 10 additions and 1 deletions
+4
View File
@@ -1,5 +1,9 @@
name: Backend check
on:
workflow_run:
workflows: ["Change versions"]
types:
- completed
pull_request:
types: [opened, synchronize, reopened]
paths:
+6 -1
View File
@@ -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