add lint workflow
ProxmoxAAS-Dashboard Code Style Check / lint-check (push) Failing after 10s

This commit is contained in:
alu
2026-07-29 03:01:49 +00:00
parent 4582d9726d
commit 60e95c04bf
+59
View File
@@ -0,0 +1,59 @@
name: ProxmoxAAS-Dashboard Code Style Check
run-name: Code style check on ${{gitea.repository}} ${{gitea.ref_name}} ${{gitea.sha}}
on:
push:
branches:
- "*"
jobs:
lint-check:
runs-on: ubuntu-latest
steps:
- name: Initialize ${{runner.os}} ${{runner.arch}}
uses: actions/setup-node@v4
- name: Install linters
run: |
npm install -g \
@eslint/eslintrc \
@eslint/js \
eslint \
globals \
html-validate \
stylelint \
stylelint-config-standard
- name: Verify linters
run: |
eslint --version
stylelint --version
html-validate --version
- name: Check out ${{gitea.repository}} ${{gitea.ref}} ${{gitea.sha}}
uses: actions/checkout@v4
- name: Run HTML Validate
id: html_lint
run: html-validate --config dev_config/.htmlvalidate.json "web/html/**/*"
- name: Run Stylelint
id: style_lint
if: always()
run: stylelint --config dev_config/.stylelintrc.json --formatter verbose --fix "web/css/**/*.css"
- name: Run ESLint
id: js_lint
if: always()
env:
DEBUG: eslint:cli-engine
run: eslint --config dev_config/eslint.config.mjs --fix web/scripts/
- name: Verify All Linters Passed
if: always()
run: |
if [ "${{ steps.html_lint.outcome }}" != "success" ] || \
[ "${{ steps.style_lint.outcome }}" != "success" ] || \
[ "${{ steps.js_lint.outcome }}" != "success" ]; then
echo "At least one linter failed."
exit 1
fi