From 0e7fae9b0549726eb5a68606327fcbfdfa535a90 Mon Sep 17 00:00:00 2001 From: Catherine Henry Date: Thu, 16 Nov 2023 13:19:24 -0600 Subject: [PATCH] Adding no-interaction flag to blt processes in test prs. --- .github/workflows/test-pull-requests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-pull-requests.yml b/.github/workflows/test-pull-requests.yml index d3e1fee9d..90c789b23 100644 --- a/.github/workflows/test-pull-requests.yml +++ b/.github/workflows/test-pull-requests.yml @@ -17,11 +17,11 @@ jobs: - name: Set up the site run: | ddev composer install - ddev exec blt setup || true + ddev exec blt setup --no-interaction || true ddev drush cim ddev drush cr - name: Validate code - run: ddev exec blt validate + run: ddev exec blt validate --no-interaction - name: Run tests run: ddev exec vendor/bin/behat --config=tests/behat/behat.yml --stop-on-failure --strict - name: Upload screenshots of failure