Sha256: 69bd32f6a994153f5e8198d430bc1c1e8d308dce2cc884a48dad37cf1c0c620f
Contents?: true
Size: 1.3 KB
Versions: 4
Compression:
Stored size: 1.3 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: 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: - v2-yarn-{{ checksum "example/an_app/package.json" }} # fallback to using the latest cache if no exact match is found - v2-yarn- - run: | cd example/an_app yarn install - save_cache: paths: - example/an_app/node_modules - ~/.cache key: v2-yarn-{{ checksum "example/an_app/package.json" }} - run: bundle exec rake - run: ./script/test_example_app
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
cypress-rails-0.1.5 | .circleci/config.yml |
cypress-rails-0.1.4 | .circleci/config.yml |
cypress-rails-0.1.3 | .circleci/config.yml |
cypress-rails-0.1.2 | .circleci/config.yml |