mirror of https://github.com/sgoudham/neovide.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
442 B
YAML
23 lines
442 B
YAML
name: Lint Website
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- ".github/workflows/lint.yml"
|
|
- "website/**/*.md"
|
|
|
|
jobs:
|
|
build:
|
|
name: Lint Website
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Lint Markdown
|
|
uses: nosborn/github-action-markdown-cli@v3.1.0
|
|
with:
|
|
files: ./website
|
|
config_file: ./website/.markdownlintrc
|