Merge pull request #1835 from diowa/chore/updates #2205
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main, develop ] | |
permissions: | |
contents: read | |
jobs: | |
rubocop: | |
name: RuboCop | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: tj-actions/changed-files@v45 | |
id: changed-files | |
with: | |
files: | | |
.github/workflows/lint.yml | |
.rubocop.yml | |
**.rb | |
**.rake | |
Gemfile* | |
Rakefile | |
- name: Set up Ruby | |
if: steps.changed-files.outputs.any_changed == 'true' | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3.5' | |
bundler-cache: true | |
- name: Run RuboCop | |
if: steps.changed-files.outputs.any_changed == 'true' | |
run: bundle exec rubocop --format github | |
slimlint: | |
name: Slim-Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: tj-actions/changed-files@v45 | |
id: changed-files | |
with: | |
files: | | |
.github/workflows/lint.yml | |
.slim-lint.yml | |
**.slim | |
- name: Set up Ruby | |
if: steps.changed-files.outputs.any_changed == 'true' | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3.5' | |
bundler-cache: true | |
- name: Run Slim-Lint | |
if: steps.changed-files.outputs.any_changed == 'true' | |
run: bundle exec slim-lint . -r github | |
eslint: | |
name: ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: tj-actions/changed-files@v45 | |
id: changed-files | |
with: | |
files: | | |
.eslintignore | |
.eslintrc.cjs | |
.github/workflows/lint.yml | |
app/**/*.js | |
- uses: pnpm/action-setup@v4 | |
- name: Set up Node | |
if: steps.changed-files.outputs.any_changed == 'true' | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'pnpm' | |
- name: Install node dependencies | |
run: pnpm install | |
- name: Run ESLint | |
if: steps.changed-files.outputs.any_changed == 'true' | |
run: pnpm eslint app/**/*.js | |
stylelint: | |
name: Stylelint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: tj-actions/changed-files@v45 | |
id: changed-files | |
with: | |
files: | | |
.github/workflows/lint.yml | |
.stylelintrc | |
app/**/*.{scss,css} | |
- uses: pnpm/action-setup@v4 | |
- name: Set up Node | |
if: steps.changed-files.outputs.any_changed == 'true' | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'pnpm' | |
- name: Install node dependencies | |
run: pnpm install | |
- name: Run Stylelint | |
if: steps.changed-files.outputs.any_changed == 'true' | |
run: pnpm stylelint app/**/*.{scss,css} --formatter=github |