Skip to content

feat(config): add SKSE Menu Framework menu #51

feat(config): add SKSE Menu Framework menu

feat(config): add SKSE Menu Framework menu #51

Workflow file for this run

name: Lint
on:
pull_request:
paths:
- 'scripts/**'
- 'README.md'
- 'docs/**/*.md'
- '.vale.ini'
- '.vale/styles/**'
- 'dprint.json'
- 'lefthook.yml'
- '.github/workflows/lint.yml'
workflow_dispatch:
permissions: {}
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
jobs:
shellcheck:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- name: Run shellcheck
uses: azohra/shell-linter@v0.8.0
with:
path: "scripts/*.sh"
markdown:
runs-on: ubuntu-latest
permissions:
contents: read
checks: write
pull-requests: write
steps:
- uses: actions/checkout@v6
- name: Check markdown formatting
uses: dprint/check@v2.3
with:
args: README.md docs/**/*.md
- name: Annotate markdown prose
uses: vale-cli/vale-action@v2
with:
files: "."
vale_flags: "--glob=README.md --glob=docs/**/*.md"
reporter: github-pr-check
filter_mode: nofilter
fail_on_error: true