Skip to content

Commit

Permalink
ci: format yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lwih committed Dec 21, 2023
1 parent 6f6c95b commit 08547d9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-and-test-backend.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: [ BACKEND ] Build and Test
name: BACKEND - Build and Test

on:
push:
Expand All @@ -13,21 +13,21 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: "[BACKEND] Setup Java JDK"
- name: "Setup Java JDK"
uses: actions/setup-java@v2
with:
distribution: "zulu"
java-version: "17"
java-package: jdk # optional (jdk or jre) - defaults to jdk

- name: "[BACKEND] Analyse dependencies"
- name: "Analyse dependencies"
run: make back-check-dependencies

- name: "[BACKEND] Tests"
- name: "Tests"
run: make back-test

# - name: "[BACKEND] Check clean architecture"
# - name: "Check clean architecture"
# run: make check-clean-archi

- name: "[BACKEND] Build"
- name: "Build"
run: make back-build-mvn
6 changes: 2 additions & 4 deletions .github/workflows/build-and-test-frontend.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: [ FRONTEND ] Build and Test
name: FRONTEND - Build and Test

on:
push:
Expand All @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: "[FRONTEND] Setup Node.js environment"
- name: "Setup Node.js environment"
uses: actions/[email protected]
with:
# cache: npm
Expand Down Expand Up @@ -41,5 +41,3 @@ jobs:

- name: "Build"
run: make front-build


0 comments on commit 08547d9

Please sign in to comment.