Sha256: 5ed5081218d2fff81bed5f13878549929b36acacc1e72d39e0910b14d8ee20ed

Contents?: true

Size: 1.51 KB

Versions: 5

Compression:

Stored size: 1.51 KB

Contents

matrix:
  include:
    - language: ruby
      cache: bundler
      rvm:
        - 2.4.6
      services:
        - mongodb
      before_install:
        - "find /home/travis/.rvm/rubies -wholename '*default/bundler-*.gemspec' -delete"
        - rvm @global do gem uninstall bundler -a -x -I || true
        - gem install bundler -v "2.1.4"
      script:
        - bundle exec rake
        - bundle exec rubocop
        - bundle exec bundle-audit update && bundle exec bundle-audit check
    - language: ruby
      cache: bundler
      rvm:
        - 2.3.8
      services:
        - mongodb
      before_install:
        - "find /home/travis/.rvm/rubies -wholename '*default/bundler-*.gemspec' -delete"
        - rvm @global do gem uninstall bundler -a -x -I || true
        - gem install bundler -v "2.1.4"
      script:
        - bundle exec rake
        - bundle exec rubocop
        - bundle exec bundle-audit update && bundle exec bundle-audit check
    - language: node_js
      before_install:
        - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.12.3
        - export PATH=$HOME/.yarn/bin:$PATH
      install:
        - npm install -g codecov
        - npm install -g istanbul
      node_js:
        - "node"
        - "lts/*"
      cache:
        directories:
          - "node_modules"
      script:
        - yarn install
        - yarn run lint
        - yarn run test
        - yarn audit
        - ./bin/validate_dist.sh
        - ./bin/validate_browser.sh
        - ./bin/validate_generator.sh
        - codecov

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cqm-models-3.0.6 .travis.yml
cqm-models-3.0.5 .travis.yml
cqm-models-3.0.4 .travis.yml
cqm-models-3.0.3 .travis.yml
cqm-models-3.0.2 .travis.yml