-
Notifications
You must be signed in to change notification settings - Fork 175
49 lines (40 loc) · 1.29 KB
/
validate-frontmatter-all.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Validate-Frontmatter-in-All-Rules
on:
push:
branches: [main]
workflow_dispatch:
jobs:
validate-all-frontmatter:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Find all Markdown files in rules
run: |
find rules -type f -name '*.md' > all_rules_files.txt
echo "Found Markdown files:"
cat all_rules_files.txt
- name: Install dependencies
run: |
cd scripts/frontmatter-validator
npm install
- name: Validate Frontmatter in Rule Files
id: validate_frontmatter
run: |
node scripts/frontmatter-validator/frontmatter-validator.js --file all_rules_files.txt > validation_results.txt
- name: Create Job Summary
if: always()
run: |
echo "## Frontmatter Validation Issues" >> $GITHUB_STEP_SUMMARY
if [ -s validation_results.txt ]; then
cat validation_results.txt >> $GITHUB_STEP_SUMMARY
else
echo "No validation issues detected." >> $GITHUB_STEP_SUMMARY
fi