Skip to content

Commit 0d56b4f

Browse files
authored
Support eslint V9 config file
1 parent e67c96d commit 0d56b4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/continuous-integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
fi
114114
- name: "JS Lint"
115115
run: |
116-
if [[ -f "node_modules/.bin/eslint" && -f ".eslintrc.js" ]]; then
116+
if [[ -f "node_modules/.bin/eslint" && ( -f "eslint.config.js" || -f "eslint.config.mjs" || -f "eslint.config.cjs" || -f ".eslintrc.js" ) ]]; then
117117
echo -e "\033[0;33mExecuting ESLint...\033[0m"
118118
node_modules/.bin/eslint --color .
119119
else

0 commit comments

Comments
 (0)