Skip to content

Commit

Permalink
New approach
Browse files Browse the repository at this point in the history
  • Loading branch information
carlpartridge committed Jan 13, 2025
1 parent f4f7caf commit 6e47c19
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/waf-sync-lambda-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,4 @@ jobs:
aws lambda invoke --function-name bcda-dev-api-waf-sync test-result.txt
- name: Verify result
run: |
grep "errorType" test-result.txt
if [[ $? -eq 0 ]]; then cat test-result.txt; exit 1; else echo "Success"; fi
if grep -q "errorType" test-result.txt; then cat test-result.txt; exit 1; else echo "Success"; fi

0 comments on commit 6e47c19

Please sign in to comment.