From a125e26d962cd2030cf46125f2ea04653cdd3f4f Mon Sep 17 00:00:00 2001 From: JG Date: Mon, 23 May 2022 12:06:42 +0100 Subject: [PATCH] pipeline tweak to run also cucumber tests --- .github/workflows/production_pipeline.yml | 6 +++++- .github/workflows/staging_pipeline.yml | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) 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