From aaa932302cc0b1ae63d9cb7195ad25fbd5f6e56e Mon Sep 17 00:00:00 2001 From: mahula Date: Fri, 17 Mar 2023 14:28:34 +0100 Subject: [PATCH] correct job names --- .github/workflows/test-backend.yml | 4 ++-- .github/workflows/test-webapp.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-backend.yml b/.github/workflows/test-backend.yml index ae15775e0..84d87c770 100644 --- a/.github/workflows/test-backend.yml +++ b/.github/workflows/test-backend.yml @@ -62,7 +62,7 @@ jobs: path: /tmp/backend.tar lint_backend: - name: Lint backend + name: Lint Backend if: needs.files-changed.outputs.backend == 'true' needs: files-changed runs-on: ubuntu-latest @@ -74,7 +74,7 @@ jobs: run: cd backend && yarn && yarn run lint unit_test_backend: - name: Unit tests - backend + name: Unit tests - Backend if: needs.files-changed.outputs.backend == 'true' || needs.files-changed.outputs.docker == 'true' needs: [files-changed, build_test_neo4j, build_test_backend] runs-on: ubuntu-latest diff --git a/.github/workflows/test-webapp.yml b/.github/workflows/test-webapp.yml index 31e640092..9ca3023cc 100644 --- a/.github/workflows/test-webapp.yml +++ b/.github/workflows/test-webapp.yml @@ -56,7 +56,7 @@ jobs: path: /tmp/webapp.tar lint_webapp: - name: Lint webapp + name: Lint Webapp if: needs.files-changed.outputs.webapp needs: files-changed runs-on: ubuntu-latest @@ -68,7 +68,7 @@ jobs: run: cd webapp && yarn && yarn run lint unit_test_webapp: - name: Unit tests - webapp + name: Unit Tests - Webapp if: needs.files-changed.outputs.docker == 'true' || needs.files-changed.outputs.webapp needs: [files-changed, build_test_webapp] runs-on: ubuntu-latest