Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
177334bf6f |
@@ -28,8 +28,12 @@ jobs:
|
|||||||
html-validate --version
|
html-validate --version
|
||||||
- name: Check out ${{gitea.repository}} ${{gitea.ref}} ${{gitea.sha}}
|
- name: Check out ${{gitea.repository}} ${{gitea.ref}} ${{gitea.sha}}
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Run Linters
|
- name: Check HTML
|
||||||
run: |
|
continue-on-error: true
|
||||||
html-validate --config dev_config/.htmlvalidate.json web/html/*; \
|
run: html-validate --config dev_config/.htmlvalidate.json "web/html/**/*"
|
||||||
stylelint --config dev_config/.stylelintrc.json --formatter verbose web/css/*.css; \
|
- name: Check CSS
|
||||||
eslint --config dev_config/eslint.config.mjs web/scripts/
|
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/
|
||||||
Reference in New Issue
Block a user