Skip to content

Commit 899c6c7

Browse files
darthkalidannysteinbrecher
andauthored
fix: frontend backend pipeline (#37)
* fix: moved frontend and backend main pipeline into the workflows folder * fix: moved frontend and backend main pipeline into the workflows folder * fix: fixed wrong paths --------- Co-authored-by: dannysteinbrecher <danny.steinbrecher@outlook.com>
1 parent 6370904 commit 899c6c7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/backend.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ jobs:
2222
# Parallel execution of lint, security-scan, and test workflows
2323
lint:
2424
name: Run Lint
25-
uses: ./.github/workflows/backend/lint.yaml
25+
uses: ./.github/workflows/backend-lint.yaml
2626

2727
security-scan:
2828
name: Run Security Scan
2929
uses: ./.github/workflows/security-scan.yaml
3030

3131
test:
3232
name: Run Tests
33-
uses: ./.github/workflows/backend/test.yaml
33+
uses: ./.github/workflows/backend-test.yaml
3434

3535
# Sequential build stage - runs only after parallel jobs succeed
3636
build-and-push:
3737
name: Build and Push
3838
needs: [lint, security-scan, test]
39-
uses: ./.github/workflows/backend/build-and-push.yaml
39+
uses: ./.github/workflows/backend-build-and-push.yaml

.github/workflows/frontend.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ jobs:
2222
# Parallel execution of lint, security-scan, and test workflows
2323
lint:
2424
name: Run Lint
25-
uses: ./.github/workflows/frontend/lint.yaml
25+
uses: ./.github/workflows/frontend-lint.yaml
2626

2727
security-scan:
2828
name: Run Security Scan
2929
uses: ./.github/workflows/security-scan.yaml
3030

3131
test:
3232
name: Run Test
33-
uses: ./.github/workflows/frontend/test.yaml
33+
uses: ./.github/workflows/frontend-test.yaml
3434

3535
# Sequential build stage - runs only after parallel jobs succeed
3636
build-and-push:
3737
name: Build and Push
3838
needs: [lint, security-scan, test]
39-
uses: ./.github/workflows/frontend/build-and-push.yaml
39+
uses: ./.github/workflows/frontend-build-and-push.yaml

0 commit comments

Comments
 (0)