diff --git a/.eslintrc.json b/.eslintrc.json index 897f1f1..c798fb6 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -6,11 +6,7 @@ "node": true }, "plugins": ["prettier"], - "extends": [ - "eslint:recommended", - "plugin:node/recommended", - "plugin:markdown/recommended" - ], + "extends": ["eslint:recommended", "plugin:node/recommended"], "parserOptions": { "ecmaVersion": 2021, "sourceType": "module" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 927c130..534fe75 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,10 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: '16' + node-version: '20' cache: 'npm' - run: npm ci --ignore-scripts - run: npm run lint