Merge pull request #1106 from Retrospring/ci/only-lint-changed-files

CI: Only lint changed files
This commit is contained in:
Georg Gadinger 2023-03-16 08:25:08 +01:00 committed by GitHub
commit 9a8314405f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 32 additions and 0 deletions

View File

@ -12,69 +12,101 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.3.0 - uses: actions/checkout@v3.3.0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35
with:
files: "**/*.rb"
- name: Install dependencies - name: Install dependencies
run: sudo apt update && sudo apt-get install -y libpq-dev libxml2-dev libxslt1-dev libmagickwand-dev imagemagick libidn11-dev run: sudo apt update && sudo apt-get install -y libpq-dev libxml2-dev libxslt1-dev libmagickwand-dev imagemagick libidn11-dev
if: steps.changed-files.outputs.any_changed == 'true'
- name: Set up Ruby - name: Set up Ruby
uses: ruby/setup-ruby@v1 uses: ruby/setup-ruby@v1
with: with:
bundler-cache: true bundler-cache: true
if: steps.changed-files.outputs.any_changed == 'true'
- name: Run rubocop - name: Run rubocop
uses: reviewdog/action-rubocop@v2 uses: reviewdog/action-rubocop@v2
with: with:
rubocop_version: gemfile rubocop_version: gemfile
rubocop_extensions: rubocop-rails:gemfile rubocop_extensions: rubocop-rails:gemfile
reporter: github-pr-check reporter: github-pr-check
if: steps.changed-files.outputs.any_changed == 'true'
eslint: eslint:
name: ESLint name: ESLint
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.3.0 - uses: actions/checkout@v3.3.0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35
with:
files: "**/*.ts"
- name: Set up Node 14 - name: Set up Node 14
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: '14' node-version: '14'
cache: 'yarn' cache: 'yarn'
if: steps.changed-files.outputs.any_changed == 'true'
- name: Install node modules - name: Install node modules
run: | run: |
npm i -g yarn npm i -g yarn
yarn install --frozen-lockfile yarn install --frozen-lockfile
if: steps.changed-files.outputs.any_changed == 'true'
- uses: reviewdog/action-eslint@v1 - uses: reviewdog/action-eslint@v1
with: with:
reporter: github-check reporter: github-check
eslint_flags: '--ext .ts app/javascript' eslint_flags: '--ext .ts app/javascript'
if: steps.changed-files.outputs.any_changed == 'true'
haml-lint: haml-lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.3.0 - uses: actions/checkout@v3.3.0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35
with:
files: "**/*.haml"
- name: Install dependencies - name: Install dependencies
run: sudo apt update && sudo apt-get install -y libpq-dev libxml2-dev libxslt1-dev libmagickwand-dev imagemagick libidn11-dev run: sudo apt update && sudo apt-get install -y libpq-dev libxml2-dev libxslt1-dev libmagickwand-dev imagemagick libidn11-dev
if: steps.changed-files.outputs.any_changed == 'true'
- name: Set up Ruby - name: Set up Ruby
uses: ruby/setup-ruby@v1 uses: ruby/setup-ruby@v1
with: with:
bundler-cache: true bundler-cache: true
if: steps.changed-files.outputs.any_changed == 'true'
- uses: patch-technology/action-haml-lint@0.4 - uses: patch-technology/action-haml-lint@0.4
with: with:
reporter: github-check reporter: github-check
rubocop_version: gemfile rubocop_version: gemfile
if: steps.changed-files.outputs.any_changed == 'true'
stylelint: stylelint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3.3.0 - uses: actions/checkout@v3.3.0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35
with:
files: "**/*.scss"
- name: Set up Node 14 - name: Set up Node 14
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: '14' node-version: '14'
cache: 'yarn' cache: 'yarn'
if: steps.changed-files.outputs.any_changed == 'true'
- name: Install node modules - name: Install node modules
run: | run: |
npm i -g yarn npm i -g yarn
yarn install --frozen-lockfile yarn install --frozen-lockfile
if: steps.changed-files.outputs.any_changed == 'true'
- name: stylelint - name: stylelint
uses: pixeldesu/action-stylelint@5ec750b03a94da735352bdb02e9dfc3d5af33aba uses: pixeldesu/action-stylelint@5ec750b03a94da735352bdb02e9dfc3d5af33aba
with: with:
github_token: ${{ secrets.github_token }} github_token: ${{ secrets.github_token }}
reporter: github-pr-check reporter: github-pr-check
stylelint_input: 'app/assets/stylesheets/**/*.scss' stylelint_input: 'app/assets/stylesheets/**/*.scss'
if: steps.changed-files.outputs.any_changed == 'true'