Skip to content

Commit 99c3c82

Browse files
committed
chore: add GitHub Actions workflows for backend and frontend linting, testing, building, and deploymen
1 parent aa09ab1 commit 99c3c82

8 files changed

Lines changed: 7 additions & 7 deletions

File tree

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

.github/workflows/main.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,43 +10,43 @@ permissions:
1010

1111
jobs:
1212
frontend-lint:
13-
uses: ./.github/workflows/pipelines/frontend-lint.yml
13+
uses: ./.github/workflows/frontend-lint.yml
1414

1515
backend-lint:
16-
uses: ./.github/workflows/pipelines/backend-lint.yml
16+
uses: ./.github/workflows/backend-lint.yml
1717

1818
frontend-test:
1919
needs:
2020
- frontend-lint
2121
- backend-lint
22-
uses: ./.github/workflows/pipelines/frontend-test.yml
22+
uses: ./.github/workflows/frontend-test.yml
2323

2424
backend-test:
2525
needs:
2626
- frontend-lint
2727
- backend-lint
28-
uses: ./.github/workflows/pipelines/backend-test.yml
28+
uses: ./.github/workflows/backend-test.yml
2929

3030
frontend-build-image:
3131
needs:
3232
- frontend-test
3333
- backend-test
3434
if: github.ref == 'refs/heads/main'
35-
uses: ./.github/workflows/pipelines/frontend-build-image.yml
35+
uses: ./.github/workflows/frontend-build-image.yml
3636
secrets: inherit
3737

3838
backend-build-image:
3939
needs:
4040
- frontend-test
4141
- backend-test
4242
if: github.ref == 'refs/heads/main'
43-
uses: ./.github/workflows/pipelines/backend-build-image.yml
43+
uses: ./.github/workflows/backend-build-image.yml
4444
secrets: inherit
4545

4646
deploy:
4747
needs:
4848
- frontend-build-image
4949
- backend-build-image
5050
if: github.ref == 'refs/heads/main'
51-
uses: ./.github/workflows/pipelines/deploy.yml
51+
uses: ./.github/workflows/deploy.yml
5252
secrets: inherit

0 commit comments

Comments
 (0)