Sha256: 8ab28c7e55d151060514e66f78e02073da044986da5641b7e7275a7fb63e7fad

Contents?: true

Size: 1.54 KB

Versions: 4

Compression:

Stored size: 1.54 KB

Contents

version: 2.1

orbs:
  browser-tools: circleci/browser-tools@1.1
  solidusio_extensions: solidusio/extensions@volatile

jobs:
  run-specs-with-sqlite:
    executor:
      name: solidusio_extensions/sqlite
      ruby_version: '3.1'
    steps:
      - browser-tools/install-chrome
      - solidusio_extensions/run-tests
  run-specs-with-postgres:
    executor:
      name: solidusio_extensions/postgres
      ruby_version: '3.1'
    steps:
      - browser-tools/install-chrome
      - solidusio_extensions/run-tests
  run-specs-with-mysql:
    executor:
      name: solidusio_extensions/mysql
      ruby_version: '3.1'
    steps:
      - browser-tools/install-chrome
      - solidusio_extensions/run-tests
  lint-code:
    executor:
      name: solidusio_extensions/sqlite-memory
      ruby_version: '3.1'
    steps:
      - solidusio_extensions/lint-code

workflows:
  "Run specs on supported Solidus versions":
    jobs:
      - run-specs-with-sqlite:
          context: acts_as_tenant
      - run-specs-with-postgres:
          context: acts_as_tenant
      - run-specs-with-mysql:
          context: acts_as_tenant
      - lint-code:
          context: acts_as_tenant

  "Weekly run specs against main":
    triggers:
      - schedule:
          cron: "0 0 * * 4" # every Thursday
          filters:
            branches:
              only:
                - main
    jobs:
      - run-specs-with-sqlite:
          context: acts_as_tenant
      - run-specs-with-postgres:
          context: acts_as_tenant
      - run-specs-with-mysql:
          context: acts_as_tenant

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
solidus_act_as_tenant-0.0.4 .circleci/config.yml
solidus_act_as_tenant-0.0.3 .circleci/config.yml
solidus_act_as_tenant-0.0.2 .circleci/config.yml
solidus_act_as_tenant-0.0.1 .circleci/config.yml