Sha256: d3349f2646bcdf136e968dad6d1b57cb4ea13d8572f9cf9541d78de43122fe52

Contents?: true

Size: 535 Bytes

Versions: 5

Compression:

Stored size: 535 Bytes

Contents

name: JS lint

on: [push]

jobs:
  lint:
    name: JS Lint
    strategy:
      matrix:
        os: [ubuntu-latest]
        node: [14.x, 16.x, 18.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 dependencies
        run: yarn --frozen-lockfile --non-interactive --prefer-offline

      - name: Lint
        run: yarn lint

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
shakapacker-7.0.2 .github/workflows/js-lint.yml
shakapacker-7.0.1 .github/workflows/js-lint.yml
shakapacker-7.0.0 .github/workflows/js-lint.yml
shakapacker-7.0.0.rc.2 .github/workflows/js-lint.yml
shakapacker-7.0.0.rc.1 .github/workflows/js-lint.yml