diff --git a/.eslintrc.js b/.eslintrc.js index b95784e..65a692e 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -59,6 +59,6 @@ module.exports = { useTabs: false, }, ], - '@typescript-eslint/no-explicit-any': 'warn', + '@typescript-eslint/no-explicit-unknown': 'off', }, }; diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index ae8165e..a98926b 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -27,3 +27,7 @@ jobs: - name: Lint Check # When fails, please run "npm run lint" to your code run: npm run lint + - name: tests Check + # When fails, please run "npm run test" to your code + run: npm run test +