From d53ec6e05db28978128658fa91f3dafad9270760 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 20 Jan 2021 14:17:41 +0100 Subject: [PATCH] corrected yml syntax error --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32962b44b..fb3857ddf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: ########################################################################## # NEO4J ################################################################## ########################################################################## - - name: [Neo4J] Build `community` image + - name: Neo4J | Build `community` image uses: docker/build-push-action@v1.1.0 with: repository: ocelotsocialnetwork/neo4j @@ -40,7 +40,7 @@ jobs: # push: false # Build Docker Image (build) - - name: [backend] Build `build` image + - name: backend | Build `build` image uses: docker/build-push-action@v1.1.0 with: repository: ocelotsocialnetwork/backend @@ -50,11 +50,11 @@ jobs: push: false # Lint - - name: [backend] Lint + - name: backend | Lint run: docker run --rm ocelotsocialnetwork/backend:build yarn run lint # Unit Tests - - name: [backend] unit tests + - name: backend | unit tests run: docker run --rm ocelotsocialnetwork/backend:build yarn run test:jest ########################################################################## @@ -71,7 +71,7 @@ jobs: # push: false # Build Docker Image (build) - - name: [webapp] Build `build` image + - name: webapp | Build `build` image uses: docker/build-push-action@v1.1.0 with: repository: ocelotsocialnetwork/webapp @@ -81,10 +81,10 @@ jobs: push: false # Lint - - name: [webapp] Lint + - name: webapp | Lint run: docker run --rm ocelotsocialnetwork/webapp:build yarn run lint # Unit Tests - - name: [webapp] unit tests + - name: webapp | unit tests run: docker run --rm ocelotsocialnetwork/webapp:build yarn run test