Sha256: 65843b951ffe9c11136220148e439c438a5f42e5a2d321538b34e0428aa9703a

Contents?: true

Size: 922 Bytes

Versions: 3

Compression:

Stored size: 922 Bytes

Contents

version: 2.1

default_steps: &default_steps
  steps:
    - checkout
    - run: gem update --system
    # We need this specific version of bundler for our Gemfile. (v2 doesn't work)
    - run: gem install bundler --version '1.7'
    - 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

3 entries across 3 versions & 1 rubygems

Version Path
percy-capybara-4.2.0 .circleci/config.yml
percy-capybara-4.1.1 .circleci/config.yml
percy-capybara-4.1.0 .circleci/config.yml