Sha256: 7fb1ce5f2526068220ac8a8ba2caba799eab2f28ffabed073b3f29656c0d2772

Contents?: true

Size: 862 Bytes

Versions: 7

Compression:

Stored size: 862 Bytes

Contents

# .github/workflows/linters.yml
name: linters
on: [pull_request]

jobs:
  linters:
    name: runner / linters
    runs-on: ubuntu-latest
    steps:
      - name: Check out code
        uses: actions/checkout@v4
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: 3.3
      - name: rubocop
        uses: reviewdog/action-rubocop@v2
        with:
          rubocop_version: 1.66.1
          rubocop_extensions: rubocop-rails:2.26.2
          github_token: ${{ secrets.GITHUB_TOKEN }}
          reporter: github-pr-check # Possible values are github-pr-check, github-pr-review
          fail_level: none
          fail_on_error: false
      - uses: actions/checkout@v4
      - name: stylelint
        uses: reviewdog/action-stylelint@v1
        with:
          reporter: github-pr-review # Change reporter.
          stylelint_input: "**/*.scss"

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
cm-admin-4.4.8 .github/workflows/linters.yml
cm-admin-4.4.6 .github/workflows/linters.yml
cm-admin-4.4.1 .github/workflows/linters.yml
cm-admin-4.4.0 .github/workflows/linters.yml
cm-admin-4.3.0 .github/workflows/linters.yml
cm-admin-4.2.1 .github/workflows/linters.yml
cm-admin-4.2.0 .github/workflows/linters.yml