Sha256: c36254782b467c4e31e6018fe901a87ce73b8829b0c7524639813df2d872d200

Contents?: true

Size: 549 Bytes

Versions: 17

Compression:

Stored size: 549 Bytes

Contents

name: JS lint

on: [push, pull_request]

jobs:
  lint:
    name: JS Lint
    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 dependencies
        run: yarn --frozen-lockfile --non-interactive --prefer-offline

      - name: Lint
        run: yarn lint

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
shakapacker-7.0.0.rc.0 .github/workflows/js-lint.yml
shakapacker-6.6.0 .github/workflows/js-lint.yml
shakapacker-6.5.6 .github/workflows/js-lint.yml
shakapacker-6.5.5 .github/workflows/js-lint.yml
shakapacker-6.5.4 .github/workflows/js-lint.yml
shakapacker-6.5.3 .github/workflows/js-lint.yml
shakapacker-6.5.2 .github/workflows/js-lint.yml
shakapacker-6.5.1 .github/workflows/js-lint.yml
shakapacker-6.5.0 .github/workflows/js-lint.yml
shakapacker-6.4.1 .github/workflows/js-lint.yml
shakapacker-6.4.0 .github/workflows/js-lint.yml
shakapacker-6.3.0 .github/workflows/js-lint.yml
shakapacker-6.3.0.pre.rc.1 .github/workflows/js-lint.yml
shakapacker-6.2.1 .github/workflows/js-lint.yml
shakapacker-6.2.0 .github/workflows/js-lint.yml
shakapacker-6.1.1 .github/workflows/js-lint.yml
shakapacker-6.1.0 .github/workflows/js-lint.yml