diff --git a/.github/workflows/production_pipeline.yml b/.github/workflows/production_pipeline.yml index 693c75c22..7436a50fd 100644 --- a/.github/workflows/production_pipeline.yml +++ b/.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 diff --git a/.github/workflows/staging_pipeline.yml b/.github/workflows/staging_pipeline.yml index 5304c9138..7ecac13be 100644 --- a/.github/workflows/staging_pipeline.yml +++ b/.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