eslint-remote-tester PR comparator
ActionsTags
(2)Github action for testing pull requests of ESLint plugins
Usage | Requirements | Configuration | See also
eslint-remote-tester-compare-action
is a pre-configured Github workflow action for running eslint-remote-tester
in comparison mode.
It compares the changes of the PR with main branch and displays the changes of ESLint reports.
Check out the use case description from eslint-remote-tester's documentation: Plugin maintainer making sure new PRs don't introduce new false positives.
Action can be activated by commenting @github-actions eslint-remote-tester compare
in the pull request issue.
Comment may contain optional parameters for eslint-remote-tester.config.js
. See all available arguments from Configuration options.
@github-actions eslint-remote-tester compare
```js
{
rulesUnderTesting: [ 'my-rule' ],
eslintrc: { rules: { 'my-rule': 'error' } },
}
```
Any text below configuration is ignored. Feel free to use this for discussion.
Name | Description | Required | Default | Example |
---|---|---|---|---|
maxResultCount |
Maximum result count to be posted in result comment. Overrides the value set in workflow configuration. | ❌ | 50 |
{maxResultCount:100} |
eslint-remote-tester
is required as peer dependency.
eslint-remote-tester-compare-action | eslint-remote-tester |
---|---|
v1 |
1.0.1 or above |
v2 |
1.0.1 or above |
v3 |
1.0.1 or above |
Due to Github CI resource limitations the target repositories should not exceed ~12GB limit. Repositories are cached in order to keep comparison files stable between the two runs.
Create new workflow .github/workflows/compare-pr.yml
.
name: Compare PR
on:
issue_comment:
types: [created, edited]
jobs:
compare:
runs-on: ubuntu-latest
if: contains(github.event.comment.body, '@github-actions eslint-remote-tester compare')
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 18
- uses: AriPerkkio/eslint-remote-tester-compare-action@v2
with:
allowed-associations: '["OWNER", "COLLABORATOR"]'
max-result-count: 100
eslint-remote-tester-config: test/compare-pr/eslint-remote-tester.config.js
repository-initialize-command: |
npm install
npm link
npm link eslint-plugin-custom
Name | Description | Required | Default | Example |
---|---|---|---|---|
github-token |
Token for Github Authentication. See About the GITHUB_TOKEN secret. |
❌ | ${{github.token}} |
${{secrets.SOME_CUSTOM_TOKEN}} |
allowed-associations |
Comment author associations allowed. See CommentAuthorAssociation. | ❌ | '["OWNER"]' |
'["OWNER","COLLABORATOR"]' |
repository-initialize-command |
Command(s) used to initialize project after checkout. Multiple commands are split from line breaks. | ❌ | 'yarn install' |
'yarn install \n yarn link \n yarn link eslint-plugin-custom' |
eslint-remote-tester-config |
Path to project's eslint-remote-tester.config.js |
❌ | 'eslint-remote-tester.config.js' |
./path/to/custom.config.js |
max-result-count |
Maximum result count to be posted in result comment. Can be override with maxResultCount option in comment. |
❌ | 50 |
100 |
Most of the comment handling logic is from nwtgck/actions-comment-run
. Check out their README for comment related tips, e.g. TIPS: Saved replies.
eslint-remote-tester PR comparator is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.