Skip to content

Refactor project structure and add new dashboard layout with navigati… #30

Refactor project structure and add new dashboard layout with navigati…

Refactor project structure and add new dashboard layout with navigati… #30

Workflow file for this run

#################################
# @author K10s Open Source Team #
# @since 01/01/2025 #
#################################
name: Lint YAML Files
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-yaml:
name: Lint YAML Files
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
# Step 1
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
# Step 2
- name: Lint YAML Files
uses: super-linter/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_YAML: true
VALIDATE_YAML_FILES: "kubernetes/**/*"