fix: Fix files' names for Software_Supply_Chain_Security.md and Webhook_Security_Guidelines_CheatSheet.md #2863
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 Check | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
env: | |
CI: true | |
steps: | |
- name: Setup Action | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 12.x | |
- name: Install dependencies | |
run: npm install | |
- name: Run linter | |
run: npm test |