From ef8e5b2be320d635bd30d2717ee609b4e8f0e65c Mon Sep 17 00:00:00 2001 From: Aravind N Date: Fri, 8 Dec 2023 13:28:39 +0530 Subject: [PATCH] Update CICD pipeline GitHub actions --- .github/workflows/ci-cd-pipeline.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-cd-pipeline.yaml b/.github/workflows/ci-cd-pipeline.yaml index 7bef076..92c50a6 100644 --- a/.github/workflows/ci-cd-pipeline.yaml +++ b/.github/workflows/ci-cd-pipeline.yaml @@ -26,7 +26,7 @@ jobs: run: npm run lint test: - name: "🚀 Run all unit test cases" + name: "🚨 Run all unit test cases" runs-on: ubuntu-latest steps: - name: "☁️ checkout the repository" @@ -44,7 +44,7 @@ jobs: run: npm t opa: - name: "🚀 Quality gates using Open Policy Agent (OPA)" + name: "🚧 Quality gates using Open Policy Agent (OPA)" runs-on: ubuntu-latest needs: - lint @@ -54,7 +54,7 @@ jobs: run: | echo "⌛ Connecting to Open Policy Agent (OPA) at: 20.237.56.131" - uses: actions/checkout@v4 - - name: "🔧 Set up Python" + - name: "🔧 Setup Python" uses: actions/setup-python@v4 with: python-version: '3.10' @@ -105,7 +105,7 @@ jobs: echo "OPA Server Response:" echo "{'result': True}" echo "End OPA Policy Check" - echo "🚀✅ Quality gate passed" + echo "✅💚 Quality gate passed" visualize: name: "📊 Visualize the repository" @@ -122,7 +122,7 @@ jobs: uses: githubocto/repo-visualizer@0.7.1 with: excluded_paths: "node_modules,.github" - # output_file: "public/diagram.svg" + output_file: "src/diagram.svg" should_push: false root_path: "/" @@ -194,7 +194,7 @@ jobs: - name: "🚀 Deploy to STAGE ENV" run: | echo "⏳ Deploying the application to STAGE ENV" - echo "🚀✅ Successfully deployed the application to STAGE ENV" + echo "🚀✅💚 Successfully deployed the application to STAGE ENV" release-prod: environment: @@ -222,7 +222,7 @@ jobs: - name: "🚀 Deploy to PROD ENV" run: | echo "⏳ Deploying the application to PROD ENV" - echo "🚀✅ Successfully deployed the application to PROD ENV" + echo "🚀✅💚 Successfully deployed the application to PROD ENV" cleanup: name: "♻️ Cleanup actions"