From 90e8f74520e7b28b93ab5240a90a7e7c9621e54b Mon Sep 17 00:00:00 2001 From: Mohammad Shafiee Date: Mon, 20 Jul 2026 23:34:58 +0200 Subject: [PATCH] chore(ci): wire reusable lint workflow (yamllint + astro check/build) --- .github/workflows/lint.yml | 16 ++++++++++++++++ 1 file changed, 16 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..ee87b36 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,16 @@ +name: Lint +on: + push: + branches: [main] + pull_request: + workflow_dispatch: + +permissions: + contents: read + +jobs: + lint: + name: shellcheck + yamllint + astro (reusable) + uses: ZurvanLinux/.github/.github/workflows/lint.yml@main + with: + astro: true