1 Commits
Author SHA1 Message Date
alu cc6aa6ec13 add lint workflow
ProxmoxAAS-Dashboard Code Style Check / lint-check (push) Failing after 10s
2026-07-29 02:56:14 +00:00
+5 -9
View File
@@ -28,12 +28,8 @@ jobs:
html-validate --version
- name: Check out ${{gitea.repository}} ${{gitea.ref}} ${{gitea.sha}}
uses: actions/checkout@v4
- name: Check HTML
continue-on-error: true
run: html-validate --config dev_config/.htmlvalidate.json "web/html/**/*"
- name: Check CSS
continue-on-error: true
run: stylelint --config dev_config/.stylelintrc.json --formatter verbose --fix "web/css/**/*.css"
- name: Check JS
continue-on-error: true
run: eslint --config dev_config/eslint.config.mjs --fix web/scripts/
- name: Run Linters
run: |
html-validate --config dev_config/.htmlvalidate.json web/html/*; \
stylelint --config dev_config/.stylelintrc.json --formatter verbose web/css/*.css; \
eslint --config dev_config/eslint.config.mjs web/scripts/