feat: update configuration with favicon, logo, and social links #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |