Skip to content
activity

GitHub Action

standardlint-action

v1.0.5 Latest version

standardlint-action

activity

standardlint-action

Runs StandardLint, an extensible standards linter and auditor

Installation

Copy and paste the following snippet into your .yml file.

              

- name: standardlint-action

uses: mikaelvesavuori/standardlint-action@v1.0.5

Learn more about this action in mikaelvesavuori/standardlint-action

Choose a version

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