correct job names

This commit is contained in:
mahula 2023-03-17 14:28:34 +01:00
parent 511007795d
commit aaa932302c
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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