From 04656f92824cbe4c81cb4d5a1f757c9bf6ed65e5 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 2 Jun 2026 16:30:19 +0530 Subject: [PATCH] ci: add automated HTML and CSS validation to CI workflow --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef202c8..9151953 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,4 +12,8 @@ jobs: steps: - uses: actions/checkout@v4 - - run: echo "CI running successfully" \ No newline at end of file + - name: HTMLHint + run: npx htmlhint "**/*.html" + + - name: CSS Lint (Basic) + run: npx stylelint "css/*.css" --config '{ "rules": { "color-no-invalid-hex": true } }'