diff --git a/.github/workflows/lint-eslint.yml b/.github/workflows/lint-eslint.yml index 3668c26b..b4fe77cb 100644 --- a/.github/workflows/lint-eslint.yml +++ b/.github/workflows/lint-eslint.yml @@ -3,12 +3,12 @@ name: ESLint on: workflow_dispatch: push: - branches: [master, develop, refactor/eslint] + branches: [master, develop, refactor/eslint, refactor/stylelint] pull_request: - branches: [master, develop, refactor/eslint] + branches: [master, develop, refactor/eslint, refactor/stylelint] env: - NODE_VERSION: 16 + NODE_VERSION: 20 jobs: lint: @@ -30,4 +30,7 @@ jobs: run: npm ci - name: Code Linting - run: npx eslint *.js \ No newline at end of file + run: npx eslint *.js + + - name: CSS Linting + run: npx stylelint css/*.css \ No newline at end of file