Browse Source

pipeline tweak to run also cucumber tests

cucumber-rails
JG 3 years ago
parent
commit
a125e26d96
  1. 6
      .github/workflows/production_pipeline.yml
  2. 6
      .github/workflows/staging_pipeline.yml

6
.github/workflows/production_pipeline.yml

@ -76,10 +76,14 @@ jobs:
run: |
bundle exec rake assets:precompile
- name: Run tests
- name: Run rspec tests
run: |
bundle exec rspec
- name: Run cucumber tests
run: |
bundle exec cucumber
lint:
name: Lint
runs-on: ubuntu-latest

6
.github/workflows/staging_pipeline.yml

@ -65,10 +65,14 @@ jobs:
run: |
bundle exec rake assets:precompile
- name: Run tests
- name: Run rspec tests
run: |
bundle exec rspec
- name: Run cucumber tests
run: |
bundle exec cucumber
lint:
name: Lint
runs-on: ubuntu-latest

Loading…
Cancel
Save