Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save armandofox/1ca9c737e3241ffceebaa40394ae59c9 to your computer and use it in GitHub Desktop.
Save armandofox/1ca9c737e3241ffceebaa40394ae59c9 to your computer and use it in GitHub Desktop.
- name: Install Chrome For Testing and Chromedriver
uses: browser-actions/setup-chrome@v1
id: install-chromedriver
with:
chrome-version: stable
install-chromedriver: true
install-dependencies: true
- name: run Cucumber tests using config/cucumber.yml options, and capture coverage
env:
CHROMEDRIVER_PATH: ${{ steps.install-chromedriver.outputs.chromedriver-path }}
CHROME_FOR_TESTING_PATH: ${{ steps.install-chromedriver.outputs.chrome-path }}
run: |
bundle exec cucumber --profile ci-report
$CCTR format-coverage --output coverage/codeclimate.$SUITE.json --input-type simplecov
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment