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 } }'