Fix MD041/first-line-heading/first-line-h1
by restructure the headi…
#4
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: Lint | |
on: | |
push: | |
branches: [master, feature/**] | |
pull_request: | |
branches: [master] | |
jobs: | |
markdownlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare Node.js | |
uses: actions/setup-node@v3.8.1 | |
with: | |
node-version-file: .node-version | |
- name: Install deps | |
run: npm install -g markdownlint-cli | |
- name: Lint the markdown file | |
run: markdownlint 'README.md' |