Sha256: e48f9c8992b045171eaca3d1fc5d9477afa71e4a34443c44cdb33ade63b728a9
Contents?: true
Size: 1.4 KB
Versions: 151
Compression:
Stored size: 1.4 KB
Contents
version: 2.1 orbs: # Required for feature specs. browser-tools: circleci/browser-tools@1.1 # Always take the latest version of the orb, this allows us to # run specs against Solidus supported versions only without the need # to change this configuration every time a Solidus version is released # or goes EOL. solidusio_extensions: solidusio/extensions@volatile jobs: run-specs-with-sqlite: executor: solidusio_extensions/sqlite steps: - browser-tools/install-chrome - solidusio_extensions/run-tests run-specs-with-postgres: executor: solidusio_extensions/postgres steps: - browser-tools/install-chrome - solidusio_extensions/run-tests run-specs-with-mysql: executor: solidusio_extensions/mysql steps: - browser-tools/install-chrome - solidusio_extensions/run-tests lint-code: executor: solidusio_extensions/sqlite-memory steps: - solidusio_extensions/lint-code workflows: "Run specs on supported Solidus versions": jobs: - run-specs-with-sqlite - run-specs-with-postgres - run-specs-with-mysql - lint-code "Weekly run specs against main": triggers: - schedule: cron: "0 0 * * 4" # every Thursday filters: branches: only: - main jobs: - run-specs-with-sqlite - run-specs-with-postgres - run-specs-with-mysql
Version data entries
151 entries across 151 versions & 8 rubygems