Sha256: d1187870f941a8fd505441989bd1ca04008dc5b521f5d7b971bb1e970971e36d

Contents?: true

Size: 962 Bytes

Versions: 9

Compression:

Stored size: 962 Bytes

Contents

name: CI

on: 
  push:

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

    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

9 entries across 9 versions & 1 rubygems

Version Path
shopify_app-17.1.0 .github/workflows/build.yml
shopify_app-17.0.5 .github/workflows/build.yml
shopify_app-17.0.4 .github/workflows/build.yml
shopify_app-17.0.3 .github/workflows/build.yml
shopify_app-17.0.2 .github/workflows/build.yml
shopify_app-17.0.1 .github/workflows/build.yml
shopify_app-17.0.0 .github/workflows/build.yml
shopify_app-16.1.0 .github/workflows/build.yml
shopify_app-16.0.0 .github/workflows/build.yml