Skip to content

Commit

Permalink
add continue-on-error to actions validation job
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbass committed Mar 28, 2024
1 parent 41d3f30 commit 511f4a2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/iac_verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,30 +44,35 @@ jobs:
terragrunt -v
- name: vpc
working-directory: ./tofu/environments/${{inputs.environment}}/network/vpc
continue-on-error: true
run: |
terragrunt init
terragrunt validate
terragrunt plan
- name: backend-infra
working-directory: ./tofu/environments/${{inputs.environment}}/services/backend-infra
continue-on-error: true
run: |
terragrunt init
terragrunt validate
terragrunt plan
- name: cache
working-directory: ./tofu/environments/${{inputs.environment}}/data-store/cache
continue-on-error: true
run: |
terragrunt init
terragrunt validate
terragrunt plan
- name: database
working-directory: ./tofu/environments/${{inputs.environment}}/data-store/database
continue-on-error: true
run: |
terragrunt init
terragrunt validate
terragrunt plan
- name: frontend
working-directory: ./tofu/environments/${{inputs.environment}}/services/frontend
continue-on-error: true
run: |
terragrunt init
terragrunt validate
Expand Down

0 comments on commit 511f4a2

Please sign in to comment.