Sha256: 48776ed02aa9cd9092b12de7e27f6f96b1900ab60bf993d43d408935c6bf5694

Contents?: true

Size: 1.3 KB

Versions: 1

Compression:

Stored size: 1.3 KB

Contents

name: Continuous Integration
on:
  pull_request:
    branches:
      - master
      - cqm_models_3_x

jobs:
  build:

    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby-version: [3.0]
        mongodb-version: [4.2, 4.4]
        node-version: [18.x]

    steps:
    - uses: actions/checkout@v3
    - name: Use Ruby ${{ matrix.ruby-version }}
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler: 2.3.17
    - name: Install dependencies
      run: bundle install
    - name: Start MongoDB
      uses: supercharge/mongodb-github-action@1.10.0
      with:
        mongodb-version: ${{ matrix.mongodb-version }}
    - name: Run audit
      run: |
        bundle exec bundle-audit check --update
        bundle exec bundle-audit check
    - name: Run rake
      run: bundle exec rake
    - name: Run rubocop
      run: bundle exec rubocop
    - name: Use Node.js ${{ matrix.node-version }}
      uses: actions/setup-node@v3
      with:
        node-version: ${{ matrix.node-version }}
    - name: Install Yarn
      run: npm install -g yarn
    - name: Run yarn
      run: |
        yarn install
        yarn run lint
        yarn run test
        yarn audit
    - name: Run validation
      run: |
        ./bin/validate_dist.sh
        ./bin/validate_browser.sh

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cqm-models-4.2.0 .github/workflows/ci.yml