Sha256: 797b2859dac9e6f33bfe6bb7a210dabb3c89316722c6edabfe3f3c283a57a50e

Contents?: true

Size: 1 KB

Versions: 8

Compression:

Stored size: 1 KB

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.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

8 entries across 8 versions & 1 rubygems

Version Path
shopify_app-18.0.4 .github/workflows/build.yml
shopify_app-18.0.3 .github/workflows/build.yml
shopify_app-18.0.2 .github/workflows/build.yml
shopify_app-18.0.1 .github/workflows/build.yml
shopify_app-18.0.0 .github/workflows/build.yml
shopify_app-17.2.1 .github/workflows/build.yml
shopify_app-17.2.0 .github/workflows/build.yml
shopify_app-17.1.1 .github/workflows/build.yml