Created
April 7, 2025 18:46
-
-
Save armandofox/1ca9c737e3241ffceebaa40394ae59c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- 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