Skip to content

infra/linters: Replace spellcheck with Typos #574

infra/linters: Replace spellcheck with Typos

infra/linters: Replace spellcheck with Typos #574

Workflow file for this run

name: Linter Actions Workflow
on:
pull_request:
branches:
- main
jobs:
checkpatch:
name: Checkpatch
runs-on: ubuntu-latest
steps:
- name: Checkpatch
uses: open-education-hub/actions/checkpatch@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
super-linter:
name: Super Linter
runs-on: ubuntu-latest
steps:
- name: Super Linter
uses: open-education-hub/actions/super-linter@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
misspell:
name: misspell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: misspell
uses: reviewdog/action-misspell@v1
with:
locale: "US"
level: "info"