Sha256: ddcd085c447ec7b70d8315161bf51d210b89a97f60b198fd4e75898befb1adb2

Contents?: true

Size: 607 Bytes

Versions: 9

Compression:

Stored size: 607 Bytes

Contents

name: Jest specs

on: [push, pull_request]

jobs:
  jest:
    name: Jest specs
    strategy:
      matrix:
        os: [ubuntu-latest]
        node: [12.x, 14.x, 16.x]

    runs-on: ${{ matrix.os }}

    steps:
      - uses: actions/checkout@v2
      - name: Use Node.js ${{ matrix.node }}
        uses: actions/setup-node@v2
        with:
          node-version: ${{ matrix.node }}
          cache: yarn

      - name: Install yarn maybe
        run: which yarn || npm install -g yarn

      - name: Install dependencies
        run: yarn --frozen-lockfile

      - name: Jest Specs
        run: yarn test

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
shakapacker-6.1.0.beta.0 .github/workflows/jest.yml
shakapacker-6.0.2 .github/workflows/jest.yml
shakapacker-6.0.1 .github/workflows/jest.yml
shakapacker-6.0.0 .github/workflows/jest.yml
shakapacker-6.0.0.rc.14 .github/workflows/jest.yml
shakapacker-6.0.0.rc.13 .github/workflows/jest.yml
shakapacker-6.0.0.rc.12 .github/workflows/jest.yml
shakapacker-6.0.0.rc.6 .github/workflows/jest.yml
webpacker-6.0.0.rc.6 .github/workflows/jest.yml