Skip to content

Commit

Permalink
add yaml validator action
Browse files Browse the repository at this point in the history
  • Loading branch information
Rihyx committed Sep 27, 2024
1 parent 1d0e31c commit c9b658c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/validate-yml.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: validate-yaml

on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
types:
- opened
- synchronize

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
validate-yaml:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: json-yaml-validate
uses: GrantBirki/[email protected]

0 comments on commit c9b658c

Please sign in to comment.