mirror of
				https://github.com/9technologygroup/patchmon.net.git
				synced 2025-11-03 21:43:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			401 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			401 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Code quality
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
  pull_request:
 | 
						|
 | 
						|
jobs:
 | 
						|
  check:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    permissions:
 | 
						|
      contents: read
 | 
						|
    steps:
 | 
						|
      - name: Checkout
 | 
						|
        uses: actions/checkout@v5
 | 
						|
        with:
 | 
						|
          persist-credentials: false
 | 
						|
 | 
						|
      - name: Setup Biome
 | 
						|
        uses: biomejs/setup-biome@v2
 | 
						|
        with:
 | 
						|
          version: latest
 | 
						|
 | 
						|
      - name: Run Biome
 | 
						|
        run: biome ci .
 |