Skip to content

feat: update configuration with favicon, logo, and social links #1

feat: update configuration with favicon, logo, and social links

feat: update configuration with favicon, logo, and social links #1

Workflow file for this run

name: Markdown Lint
on:
push:
paths:
- "**/*.md"
pull_request:
paths:
- "**/*.md"
jobs:
lint:
name: Lint Markdown Files
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "latest"
- name: Install markdownlint-cli
run: bun add -g markdownlint-cli
- name: Run markdownlint
run: markdownlint '**/*.md'