Sha256: 2796ea2cacc9ce667742dfcf40f0644f40f98469d9015c1052be1cb6322395be
Contents?: true
Size: 1.36 KB
Versions: 3
Compression:
Stored size: 1.36 KB
Contents
version: 2 jobs: build: docker: - image: circleci/ruby:2.6-node-browsers steps: - checkout # Bundle install dependencies - type: cache-restore key: v1-main-{{ checksum "Gemfile.lock" }} - run: gem install bundler --version `tail -1 Gemfile.lock` - run: bundle install --path vendor/bundle - type: cache-save key: v1-main-{{ checksum "Gemfile.lock" }} paths: - vendor/bundle # Bundle install dependencies for example app - type: cache-restore key: v1-example-{{ checksum "example/an_app/Gemfile.lock" }} - run: | cd example/an_app bundle install --path vendor/bundle - type: cache-save key: v1-example-{{ checksum "example/an_app/Gemfile.lock" }} paths: - example/an_app/vendor/bundle # Yarn dependencies - restore_cache: keys: - v4-yarn-{{ checksum "example/an_app/yarn.lock" }} # fallback to using the latest cache if no exact match is found - v4-yarn- - run: | cd example/an_app yarn install - save_cache: paths: - example/an_app/node_modules - ~/.cache key: v4-yarn-{{ checksum "example/an_app/yarn.lock" }} - run: bundle exec rake - run: ./script/test_example_app
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cypress-rails-0.5.0 | .circleci/config.yml |
cypress-rails-0.4.2 | .circleci/config.yml |
cypress-rails-0.4.1 | .circleci/config.yml |