Browse Source

add fail fast flag to pipelines (#757)

pull/758/head
Dushan 2 years ago committed by GitHub
parent
commit
53e01886ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/production_pipeline.yml
  2. 4
      .github/workflows/staging_pipeline.yml

4
.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

4
.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

Loading…
Cancel
Save