Compare commits

...

2 Commits

Author SHA1 Message Date
l4kr
bb19859c71 Merge pull request 'acid testing' (#40) from futonbeta into main
Reviewed-on: http://gitea.genosjr.moe/l4kr/dashboard-ui/pulls/40
2023-09-13 16:07:28 +02:00
l4kr
0152ccf04f acid testing
Some checks failed
Lint Workflow / lint (pull_request) Failing after 25s
2023-09-13 16:06:48 +02:00

View File

@ -1,4 +1,4 @@
name: Lint
name: Lint Workflow
on:
pull_request:
@ -17,8 +17,14 @@ jobs:
node-version: '16.x'
- name: Install dependencies
run: npm install
# - name: Lint CSS files
# run: npx stylelint '**/*.css' --config .stylelintrc.json
- name: Initialize ESLint configuration file
run: npx eslint --init
- name: Initialize Stylelint configuration file
run: npx stylelint --init
- name: Initialize HTMLHint configuration file
run: npx htmlhint --init
- name: Lint CSS files
run: npx stylelint '**/*.css' --config .stylelintrc.json
- name: Lint JavaScript files
run: npx eslint '**/*.js'
- name: Lint HTML files