diff --git a/.github/workflows/auth-service-cd.yml b/.github/workflows/auth-service-cd.yml index 206f9fb..5fbbfad 100644 --- a/.github/workflows/auth-service-cd.yml +++ b/.github/workflows/auth-service-cd.yml @@ -10,7 +10,7 @@ on: jobs: docker: - name: Build and Push Backend image to Docker Hub + name: Build and Push Auth-service image to Docker Hub runs-on: ubuntu-latest steps: - name: Set up QEMU diff --git a/.github/workflows/auth-service-ci.yml b/.github/workflows/auth-service-ci.yml index 96e48a7..36749d8 100644 --- a/.github/workflows/auth-service-ci.yml +++ b/.github/workflows/auth-service-ci.yml @@ -3,7 +3,10 @@ on: push: paths: - "auth-service/**" - + pull_request: + paths: + - "auth-service/**" + jobs: lint: uses: ./.github/workflows/go_lint.yml diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index a06f224..5ef7000 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -3,7 +3,9 @@ on: push: paths: - "backend/**" - + pull_request: + paths: + - "backend/**" jobs: lint: uses: ./.github/workflows/go_lint.yml diff --git a/.github/workflows/frontend-ci.yml b/.github/workflows/frontend-ci.yml index be393f0..6ca1c52 100644 --- a/.github/workflows/frontend-ci.yml +++ b/.github/workflows/frontend-ci.yml @@ -3,7 +3,10 @@ on: push: paths: - "frontend/**" - + pull_request: + paths: + - "frontend/**" + jobs: lint: uses: ./.github/workflows/svelte_lint.yml