[type:fix]fix "code analysis" link 404 under Proxy page #1140
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: [pull_request] | |
jobs: | |
markdownlint: | |
name: 🍇 Markdown | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2.3.4 | |
- name: 🚀 Use Node.js | |
uses: actions/setup-node@v2.4.0 | |
with: | |
node-version: '12.x' | |
- run: npm install -g markdownlint-cli@0.25.0 | |
- run: markdownlint '**/*.md' --ignore node_modules --config ./.github/.markdownlint.yml |