Sha256: 0a84ff0839a79db184ca0d9ef1565a556651c5360d85ad9fee593632e5a4937c

Contents?: true

Size: 750 Bytes

Versions: 1

Compression:

Stored size: 750 Bytes

Contents

version: 2

jobs:
  build:
    docker:
      - image: circleci/ruby:2.6.3-node

    steps:
      - checkout

      - restore_cache:
          keys:
            - bourbon-{{ arch }}-{{ checksum "bourbon.gemspec" }}

      - run:
          name: Install Ruby dependencies
          command: bundle install --path vendor/bundle

      - run:
          name: Install SassDoc
          command: sudo npm install -g sassdoc@2.5.0

      - save_cache:
          key: bourbon-{{ arch }}-{{ checksum "bourbon.gemspec" }}
          paths:
            - vendor/bundle

      - run:
          name: Run the tests
          command: bundle exec rake

      - run:
          name: Parse SassDoc comments
          command: sassdoc core/ --parse --verbose --strict

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bourbon-6.0.0 .circleci/config.yml