Sha256: 4af2fc9ac6907d86cf1bce543fd37dcb1197c51f2ccf629572d38a36f5d37b3a
Contents?: true
Size: 925 Bytes
Versions: 11
Compression:
Stored size: 925 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.0.0 - name: rubocop uses: reviewdog/action-rubocop@v1 with: rubocop_version: 1.30.0 rubocop_extensions: rubocop-rails:2.14.2 github_token: ${{ secrets.GITHUB_TOKEN }} reporter: github-pr-check # Possible values are github-pr-check, github-pr-review - uses: actions/checkout@v4 - name: stylelint uses: reviewdog/action-stylelint@v1 with: reporter: github-pr-review # Change reporter. stylelint_input: '**/*.scss' - name: coffeelint uses: reviewdog/action-coffeelint@v1 with: reporter: github-pr-review
Version data entries
11 entries across 11 versions & 1 rubygems