Sha256: c88724250215e464262017e7713189787f8cfea9701c42c8ba05e76c213f96f8

Contents?: true

Size: 623 Bytes

Versions: 4

Compression:

Stored size: 623 Bytes

Contents

name: CI Test

on:
  pull_request:
    branches:
      - "*"
  push:
    branches:
      - main

jobs:
  test:
    runs-on: ubuntu-latest
    env:
      BUNDLE_JOBS: 4
      BUNDLE_PATH: "vendor/bundle"
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby and Yarn
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: "3.0"
        bundler-cache: true
    - uses: actions/setup-node@v2
      with:
        node-version: '15'
        cache: 'yarn'
    - name: Install NPM packages
      run: yarn install
    - name: Run tests
      run: script/test # should be cibuild but Rubocop is acting weird

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bridgetown-lit-renderer-2.0.0 .github/workflows/ci.yml
bridgetown-lit-renderer-2.0.0.beta3 .github/workflows/ci.yml
bridgetown-lit-renderer-2.0.0.beta2 .github/workflows/ci.yml
bridgetown-lit-renderer-2.0.0.beta1 .github/workflows/ci.yml