This Action makes it even easier to use StandardLint in your GitHub CI runs.
The only thing you need to run this action is a standardlint.json
configuration file in your root directory. Please see the StandardLint documentation for more details.
on: [push]
permissions:
checks: write
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run StandardLint
uses: mikaelvesavuori/standardlint-action@v1.0.0
env:
GITHUB_TOKEN: ${{ github.token }}