mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 13:46:13 +08:00 
			
		
		
		
	* Fix ESLint warnings. Update workflows. 0 ESLint warnings for auto-test * json-yaml-validate: Fix `unable to find version `v2``
		
			
				
	
	
		
			28 lines
		
	
	
		
			624 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			624 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: json-yaml-validate
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches:
 | 
						|
      - master
 | 
						|
  pull_request:
 | 
						|
    branches:
 | 
						|
      - master
 | 
						|
      - 1.23.X
 | 
						|
  workflow_dispatch:
 | 
						|
 | 
						|
permissions:
 | 
						|
  contents: read
 | 
						|
  pull-requests: write # enable write permissions for pull request comments
 | 
						|
 | 
						|
jobs:
 | 
						|
  json-yaml-validate:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v4
 | 
						|
 | 
						|
      - name: json-yaml-validate
 | 
						|
        id: json-yaml-validate
 | 
						|
        uses: GrantBirki/json-yaml-validate@v2.4.0
 | 
						|
        with:
 | 
						|
          comment: "true" # enable comment mode
 | 
						|
          exclude_file: ".github/config/exclude.txt" # gitignore style file for exclusions
 |