-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See #561.
- Loading branch information
Showing
558 changed files
with
9,098 additions
and
8,056 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Why is this file in a subdirectory? Because GitHub Actions requires it to be :( | ||
# see: https://github.com/orgs/community/discussions/26245#discussioncomment-5962450 | ||
name: "Get changed files" | ||
description: "Checks out the code and returns the filenames of files that have changed in the pull request" | ||
|
||
inputs: | ||
file-extensions: | ||
# for example: "\.rb$" or something like "\.js$|\.js.erb$" | ||
description: "Regex expressions for grep to filter for specific files" | ||
required: true | ||
|
||
outputs: | ||
changed-files: | ||
description: "A space-separated list of the files that have changed in the pull request" | ||
value: ${{ steps.get-changed-files.outputs.files }} | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
# This has to be done in the main workflow, not in the action, because | ||
# otherwise this reusable action is not available in the workflow. | ||
# - name: "Checkout code (on a PR branch)" | ||
# uses: actions/checkout@v4 | ||
# with: | ||
# fetch-depth: 2 # to also fetch parent of PR | ||
|
||
# Adapted from this great comment [1]. Git diff adapted from [2]. | ||
# "|| test $? = 1;" is used to ignore the exit code of grep when no files | ||
# are found matching the pattern. For the "three dots" ... syntax, see [3]. | ||
# | ||
# Resources: | ||
# number [1] being most important | ||
# [1] https://github.com/actions/checkout/issues/520#issuecomment-1167205721 | ||
# [2] https://robertfaldo.medium.com/commands-to-run-rubocop-and-specs-you-changed-in-your-branch-e6d2f2e4110b | ||
# [3] https://community.atlassian.com/t5/Bitbucket-questions/Git-diff-show-different-files-than-PR-Pull-Request/qaq-p/2331786 | ||
- name: Get changed files | ||
shell: bash | ||
id: get-changed-files | ||
run: | | ||
files_pretty=$(git diff --name-only --diff-filter=ACMR -r HEAD^1...HEAD | egrep '${{inputs.file-extensions}}' || test $? = 1;) | ||
printf "🎴 Changed files: \n$files_pretty" | ||
echo "files=$(echo ${files_pretty} | xargs)" >> $GITHUB_OUTPUT |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,87 +1,75 @@ | ||
on: [push] | ||
name: Linting | ||
|
||
# Trigger each time HEAD branch is updated in a pull request | ||
# see https://github.com/orgs/community/discussions/26366 | ||
on: | ||
pull_request: | ||
types: [opened, reopened, synchronize, ready_for_review] | ||
|
||
jobs: | ||
|
||
rubocop: | ||
name: RuboCop (Ruby) | ||
runs-on: ubuntu-latest | ||
name: A job to check rubocop linter errors | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 2 # to also fetch parent of PR (used to get changed files) | ||
|
||
- name: Get changed files | ||
id: rb-changed | ||
uses: ./.github/actions/changed_files/ | ||
with: | ||
file-extensions: \.rb$ | ||
|
||
- name: Set up Ruby 3 | ||
if: ${{ steps.rb-changed.outputs.changed-files != ''}} | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.1.4 | ||
- name: Install gems # usual step to install the gems. | ||
bundler-cache: true | ||
|
||
- name: Run RuboCop | ||
if: ${{ steps.rb-changed.outputs.changed-files != ''}} | ||
run: | | ||
bin/bundle config path vendor/bundle | ||
bin/bundle config set without 'default doc job cable storage ujs test db' | ||
bin/bundle install --jobs 4 --retry 3 | ||
- name: Linter count | ||
id: hello | ||
uses: henrixapp/[email protected] | ||
with: | ||
name: Rubocop | ||
command: bin/bundle exec rubocop app config lib spec | ||
total_regexp: \d+ offenses detected | ||
errors_regexp: \d+ offenses detected | ||
warnings_regexp: \d+ offenses detected | ||
compare_branch: mampf-next | ||
mode: changed | ||
include: .rb | ||
echo "🚨 Running RuboCop version: $(bundle info rubocop | head -1)" | ||
bundle exec rubocop --format github --fail-level 'convention' --force-exclusion -- $CHANGED_FILES | ||
eslint: | ||
runs-on: ubuntu-latest | ||
name: A job to check eslint linter errors | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Linter count | ||
id: hello | ||
uses: henrixapp/[email protected] | ||
with: | ||
name: EsLint | ||
command: npx eslint | ||
total_regexp: \d+ problems | ||
errors_regexp: \d+ errors | ||
warnings_regexp: \d+ warnings | ||
compare_branch: mampf-next | ||
mode: changed | ||
include: .js | ||
coffee: | ||
runs-on: ubuntu-latest | ||
name: A job to check coffee linter errors | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Linter count | ||
id: hello | ||
uses: henrixapp/[email protected] | ||
with: | ||
name: Coffee | ||
command: npx coffeelint | ||
total_regexp: \d+ errors | ||
errors_regexp: \d+ errors | ||
warnings_regexp: \d+ warnings | ||
compare_branch: mampf-next | ||
mode: changed | ||
include: .coffee | ||
# erblint: | ||
# runs-on: ubuntu-latest | ||
# name: A job to check erblint linter errors | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - name: Set up Ruby 2.7 | ||
# uses: ruby/setup-ruby@v1 | ||
# with: | ||
# ruby-version: 2.7 | ||
# - name: Install gems # usual step to install the gems. | ||
# run: | | ||
# bin/bundle config path vendor/bundle | ||
# bin/bundle config set without 'default doc job cable storage ujs test db' | ||
# bin/bundle install --jobs 4 --retry 3 | ||
# - name: Linter count | ||
# id: hello | ||
# uses: henrixapp/[email protected] | ||
# with: | ||
# name: Erblint | ||
# command: bin/bundle exec erblint . | ||
# total_regexp: \d+ error(s) | ||
# errors_regexp: \d+ error(s) | ||
# warnings_regexp: \d+ error(s) | ||
# compare_branch: mampf-next | ||
name: ESLint (JS) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 2 # to also fetch parent of PR (used to get changed files) | ||
|
||
- name: Get changed files | ||
id: js-changed | ||
uses: ./.github/actions/changed_files/ | ||
with: | ||
# .(mjs is only used for eslint.config.mjs as of January 2024) | ||
file-extensions: \.js$|\.mjs$|\.js.erb$ | ||
|
||
- name: Setup Node.js | ||
if: ${{ steps.js-changed.outputs.changed-files != ''}} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' # End of Life (EOL): April 2026 | ||
cache: 'yarn' | ||
|
||
- name: Install dependencies | ||
if: ${{ steps.js-changed.outputs.changed-files != ''}} | ||
run: yarn install | ||
|
||
# with ESLint v9 --ignore-path does not exist anymore | ||
# see [1] for the PR. However, my feeling for this is totally reflected | ||
# by [2]. Hopefully, it will come back in future versions. | ||
# [1] https://github.com/eslint/eslint/pull/16355 | ||
# [2] https://github.com/eslint/eslint/issues/16264#issuecomment-1292858747 | ||
- name: Run ESLint | ||
if: ${{ steps.js-changed.outputs.changed-files != ''}} | ||
run: | | ||
echo "🚨 Running ESLint version: $(yarn run --silent eslint --version)" | ||
yarn run eslint --max-warnings 0 --no-warn-ignored ${{ steps.js-changed.outputs.changed-files }} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.