Skip to content

mikaelvesavuori/standardlint-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

StandardLint Action

This Action makes it even easier to use StandardLint in your GitHub CI runs.

Setup and usage

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.

Example of how to use this action in a workflow

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 }}