You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Run stylelint with reviewdog
v1.0.0
This action runs stylelint with reviewdog on pull requests to improve code review experience.
Required. Must be in form of github_token: ${{ secrets.github_token }}
'.
Optional. Report level for reviewdog [info,warning,error].
It's same as -level
flag of reviewdog.
Reporter of reviewdog command [github-pr-check,github-pr-review]. Default is github-pr-check. github-pr-review can use Markdown and add a link to rule page in reviewdog reports.
Optional. Files or glob. Default: **/*.css
.
It's same as [input]
of stylelint.
Optional. It's same as --config
flag of stylelint.
You also need to install stylelint.
# Example
$ npm install stylelint stylelint-config-recommended -D
You can create stylelint config and this action uses that config too.
name: reviewdog
on: [pull_request]
jobs:
stylelint:
name: runner / stylelint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: stylelint
uses: reviewdog/action-stylelint@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review # Change reporter.
stylelint_input: '**/*.css'