Sha256: a4715db4ded266a352456d62839c79054d7515fcf2b758262730ef8617632968

Contents?: true

Size: 600 Bytes

Versions: 3

Compression:

Stored size: 600 Bytes

Contents

name: JS lint

on: [push, pull_request]

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@v4
        with:
          persist-credentials: false
      - name: Use Node.js ${{ matrix.node }}
        uses: actions/setup-node@v3
        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

3 entries across 3 versions & 1 rubygems

Version Path
shakapacker-7.2.0 .github/workflows/js-lint.yml
shakapacker-7.2.0.rc.0 .github/workflows/js-lint.yml
shakapacker-7.1.0 .github/workflows/js-lint.yml