mirror of
				https://github.com/theoludwig/markdownlint-rule-relative-links.git
				synced 2025-11-01 00:49:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			617 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			617 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: "Test"
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches: [develop]
 | 
						|
  pull_request:
 | 
						|
    branches: [main, develop]
 | 
						|
 | 
						|
jobs:
 | 
						|
  test:
 | 
						|
    strategy:
 | 
						|
      fail-fast: false
 | 
						|
      matrix:
 | 
						|
        runs-on:
 | 
						|
          - "ubuntu-latest"
 | 
						|
          - "windows-latest"
 | 
						|
          - "macos-latest"
 | 
						|
    runs-on: "${{ matrix.runs-on }}"
 | 
						|
    steps:
 | 
						|
      - uses: "actions/checkout@v4.2.2"
 | 
						|
 | 
						|
      - name: "Setup Node.js"
 | 
						|
        uses: "actions/setup-node@v4.1.0"
 | 
						|
        with:
 | 
						|
          node-version: "lts/*"
 | 
						|
          cache: "npm"
 | 
						|
 | 
						|
      - name: "Install dependencies"
 | 
						|
        run: "npm clean-install"
 | 
						|
 | 
						|
      - name: "Test"
 | 
						|
        run: "node --run test"
 |