Skip to content
This repository was archived by the owner on Oct 14, 2025. It is now read-only.

Capybara screenshot register driver #1054

Capybara screenshot register driver

Capybara screenshot register driver #1054

Workflow file for this run

name: Cucumber
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
cucumber_a:
name: Run Tests Group A
uses: './.github/workflows/cucumber-tests-job.yml'
with:
run-cmd: |
bundle exec cucumber --strict HEADLESS=true HOST=localhost $(find ./staff_features -maxdepth 1 -type d -iname '[a-g]*' | tr '\n' ' ')
cucumber_b:
name: Run Tests Group B
uses: './.github/workflows/cucumber-tests-job.yml'
with:
run-cmd: |
bundle exec cucumber --strict HEADLESS=true HOST=localhost $(find ./staff_features -maxdepth 1 -type d -iname '[h-n]*' | tr '\n' ' ')
cucumber_c:
name: Run Tests Group C
uses: './.github/workflows/cucumber-tests-job.yml'
with:
run-cmd: |
bundle exec cucumber --strict HEADLESS=true HOST=localhost $(find ./staff_features -maxdepth 1 -type d -iname '[o-u]*' | tr '\n' ' ')
cucumber_d:
name: Run Tests Group D
uses: './.github/workflows/cucumber-tests-job.yml'
with:
run-cmd: |
bundle exec cucumber --strict HEADLESS=true HOST=localhost $(find ./staff_features -maxdepth 1 -type d -iname '[v-z]*' | tr '\n' ' ')