Sha256: 579a8ca0797530ea51f5d07e39b0e23028da76489bda6eba8002c31d7822008a

Contents?: true

Size: 812 Bytes

Versions: 5

Compression:

Stored size: 812 Bytes

Contents

name: CI

on:
  push:
    branches:
      - master
  pull_request:

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: ["2.7"]
        gemfile:
          - gemfiles/rails50_sprockets_3.gemfile
          - gemfiles/rails51_sprockets_3.gemfile
          - gemfiles/rails52_sprockets_3.gemfile
          - gemfiles/rails70_sprockets_4.gemfile

    env:
      BUNDLE_GEMFILE: ${{ matrix.gemfile }}
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - uses: actions/setup-node@v3
        with:
          node-version: "16"
      - name: install dependencies
        run: |
          bundle install --jobs 3 --retry 3
          yarn install
      - name: test
        run: bundle exec rake spec

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
js-routes-2.2.9 .github/workflows/ci.yml
js-routes-2.2.8 .github/workflows/ci.yml
js-routes-2.2.7 .github/workflows/ci.yml
js-routes-2.2.6 .github/workflows/ci.yml
js-routes-2.2.5 .github/workflows/ci.yml