File tree Expand file tree Collapse file tree 2 files changed +18
-33
lines changed Expand file tree Collapse file tree 2 files changed +18
-33
lines changed Original file line number Diff line number Diff line change @@ -171,3 +171,21 @@ jobs:
171171        run : nix flake check --no-build  #  check for accurate syntax
172172      - name : Check that the flake builds 
173173        run : nix build  #  check that the build runs
174+ 
175+   markdownlint :
176+     name : Check Markdown formatting 
177+     runs-on : ubuntu-latest 
178+     steps :
179+       - name : Checkout repo 
180+         uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332  #  pin@v4
181+ 
182+       - name : Set up Node.js 
183+         uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020  #  pin@v4
184+         with :
185+           node-version : ' 18' 
186+ 
187+       - name : Install markdownlint-cli 
188+         run : 
npm install -g [email protected]   189+ 
190+       - name : Run markdownlint 
191+         run : markdownlint '**/*.md' --ignore node_modules 
Load Diff This file was deleted. 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments