Sha256: a67cd51919c1e7edf784c993ae30bb44140e87f5b87f41d7f9d4e694cc857864

Contents?: true

Size: 817 Bytes

Versions: 4

Compression:

Stored size: 817 Bytes

Contents

version: 2.1

default_steps: &default_steps
  steps:
    - checkout
    - run: sudo gem update --system
    - run: ruby -v
    - run: yarn
    - run: bundle install
    - run: yarn percy exec -- bundle exec rspec
    - run: bundle exec rubocop -D

jobs:
  ruby_latest_with_percy:
    # This is the one environment where we'll capture and upload snapshots in CI.
    docker:
      - image: circleci/ruby:latest-node-browsers
    <<: *default_steps
  ruby_25:
    docker:
      - image: circleci/ruby:2.5-node-browsers
    environment:
      PERCY_ENABLE: 0
    <<: *default_steps
  ruby_24:
    docker:
      - image: circleci/ruby:2.4-node-browsers
    environment:
      PERCY_ENABLE: 0
    <<: *default_steps

workflows:
  version: 2
  test:
    jobs:
      - ruby_latest_with_percy
      - ruby_25
      - ruby_24

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
percy-capybara-4.3.3 .circleci/config.yml
percy-capybara-4.3.2 .circleci/config.yml
percy-capybara-4.3.1 .circleci/config.yml
percy-capybara-4.3.0 .circleci/config.yml