Sha256: 0ff8429e072d6f41b41c58a2c5a8a2410fede3a128c131d3dd055922d9a1794f

Contents?: true

Size: 1021 Bytes

Versions: 10

Compression:

Stored size: 1021 Bytes

Contents

name: CI

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:
    runs-on: macos-latest # prevents intermittent Chrome Headless error unlike ubuntu
    name: Ruby ${{ matrix.version }}
    strategy:
      matrix:
        version: ['2.6', '2.7', '3.0']

    steps:
      - uses: actions/checkout@v2
      - name: Cache node modules
        uses: actions/cache@v2
        with:
          # npm cache files are stored in `~/.npm` on Linux/macOS
          path: ~/.npm
          key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
      - name: Set up Ruby ${{ matrix.version }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.version }}
          bundler-cache: true
      - name: Set up Node
        uses: actions/setup-node@v2-beta
        with:
          node-version: '12'
      - name: Install Dependencies
        run: |
          yarn
      - name: Run Tests
        run: |
          yarn test
          bundle exec rake test

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
ruby_shopify_app-1.3.3 .github/workflows/build.yml
ruby_shopify_app-1.3.2 .github/workflows/build.yml
ruby_shopify_app-1.3.1 .github/workflows/build.yml
ruby_shopify_app-1.3.0 .github/workflows/build.yml
ruby_shopify_app-1.2.0 .github/workflows/build.yml
ruby_shopify_app-1.1.0 .github/workflows/build.yml
ruby_shopify_app-1.0.0 .github/workflows/build.yml
shopify_app-18.1.2 .github/workflows/build.yml
shopify_app-18.1.1 .github/workflows/build.yml
shopify_app-18.1.0 .github/workflows/build.yml