mirror of
				https://github.com/theoludwig/markdownlint-rule-relative-links.git
				synced 2025-09-09 19:39:29 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			456 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			456 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: "Test"
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches: [develop]
 | |
|   pull_request:
 | |
|     branches: [master, develop]
 | |
| 
 | |
| jobs:
 | |
|   test:
 | |
|     runs-on: "ubuntu-latest"
 | |
|     steps:
 | |
|       - uses: "actions/checkout@v4.1.1"
 | |
| 
 | |
|       - name: "Setup Node.js"
 | |
|         uses: "actions/setup-node@v4.0.2"
 | |
|         with:
 | |
|           node-version: "lts/*"
 | |
|           cache: "npm"
 | |
| 
 | |
|       - name: "Install dependencies"
 | |
|         run: "npm clean-install"
 | |
| 
 | |
|       - name: "Test"
 | |
|         run: "npm run test"
 |