Which combination of steps will enforce the testing requirement in the pipeline?
(Choose two.)
Update the CodeBuild build phase commands to run the tests then to deploy the application. Set the OnFailure phase property to ABORT.
Update the CodeBuild build phase commands to run the tests then to deploy the application. Add the –rollback true flag to the cdk deploy command.
Update the CodeBuild build phase commands to run the tests then to deploy the application. Add the –require-approval any-change flag to the cdk deploy command.
Create a test that uses the AWS CDK assertions module. Use the template.hasResourceProperties assertion to test that resources have the expected properties.
Create a test that uses the cdk diff command. Configure the test to fail if any resources have changed.