From ec1144889fc7d86b56e14b38bd7a6b3c26c400dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Csaba=20Attila=20Bir=C3=B3?= Date: Sat, 28 Mar 2026 00:04:18 +0100 Subject: [PATCH] feat(ci): add GitHub Actions workflow to run lint on PRs Runs scripts/lint.sh on every PR targeting main or develop. Fails the check if any structural issues are found. --- .github/workflows/lint.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..90ee780 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,15 @@ +name: Lint SKILL.md + +on: + pull_request: + branches: [main, develop] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Run lint + run: ./scripts/lint.sh