diff --git a/.github/workflows/feature-test.yml b/.github/workflows/feature-test.yml index 8133ab8..dd508c5 100644 --- a/.github/workflows/feature-test.yml +++ b/.github/workflows/feature-test.yml @@ -52,7 +52,7 @@ jobs: run: cci org default ${{ inputs.org }} - name: Run Feature Test run: cci flow run ci_feature --use-snapshots - - name: Delete Scratch Org + - name: Delete Scratch Org if: always() run: cci org scratch_delete ${{ inputs.org_name }} shell: bash @@ -79,12 +79,3 @@ jobs: with: name: cci-build-history path: cci_build_history.json - - - name: Check Job Status - if: always() - run: | - if [[ "${{ steps.create_2gp.outcome }}" == "failure" || "${{ steps.prepare_org.outcome }}" == "failure" || "${{ steps.feature_test.outcome }}" == "failure" ]]; then - echo "Critical step failed. Failing the job." - exit 1 - fi - shell: bash