From 5cbf1f156dcd4b25a431e8042d0606c2fd5958c4 Mon Sep 17 00:00:00 2001 From: Dushan Despotovic Date: Wed, 20 Jul 2022 09:17:08 +0100 Subject: [PATCH] add fail fast flag to pipelines --- .github/workflows/production_pipeline.yml | 4 ++-- .github/workflows/staging_pipeline.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/production_pipeline.yml b/.github/workflows/production_pipeline.yml index 23c2567cd..333e1f87b 100644 --- a/.github/workflows/production_pipeline.yml +++ b/.github/workflows/production_pipeline.yml @@ -79,7 +79,7 @@ jobs: - name: Run tests run: | - bundle exec rspec --exclude-pattern "features/*" + bundle exec rspec --exclude-pattern "features/*" --fail-fast feature_test: name: Feature Tests @@ -138,7 +138,7 @@ jobs: - name: Run tests run: | - bundle exec rspec spec/features + bundle exec rspec spec/features --fail-fast lint: name: Lint diff --git a/.github/workflows/staging_pipeline.yml b/.github/workflows/staging_pipeline.yml index 77d2c706a..4c588e919 100644 --- a/.github/workflows/staging_pipeline.yml +++ b/.github/workflows/staging_pipeline.yml @@ -73,7 +73,7 @@ jobs: - name: Run tests run: | - bundle exec rspec --exclude-pattern "features/*" + bundle exec rspec --exclude-pattern "features/*" --fail-fast feature_test: name: Feature Tests @@ -132,7 +132,7 @@ jobs: - name: Run tests run: | - bundle exec rspec spec/features + bundle exec rspec spec/features --fail-fast lint: name: Lint