Sha256: dc53635be13bb77223f86ca3e1ba913c7d0e527cebd7a577198bb54f0a352ba9

Contents?: true

Size: 585 Bytes

Versions: 9

Compression:

Stored size: 585 Bytes

Contents

name: JS lint

on: [push, pull_request]

jobs:
  js-lint:
    name: JS Lint

    strategy:
      matrix:
        os: [ubuntu-latest]
        node: [14]

    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: Lint
        run: yarn lint

Version data entries

9 entries across 9 versions & 2 rubygems

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