diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e599024..05a531e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,11 +24,6 @@ jobs: eslint: - 9 - 8 - include: - - node: 16 - eslint: 8 - - node: 14 - eslint: 8 steps: - name: Checkout Repo @@ -46,15 +41,12 @@ jobs: - name: Install run: pnpm install --prefer-frozen-lockfile - - name: Install ESLint ${{ matrix.node }} + - name: Install ESLint ${{ matrix.eslint }} if: ${{ matrix.eslint != 9 }} run: pnpm install -D eslint@${{ matrix.eslint }} @graphql-eslint/eslint-plugin@3 eslint-plugin-svelte@2 svelte@3 vue-eslint-parser@9 - name: Test run: pnpm mocha - - name: Perf - # Skip on node 14, as eslint-plugin-n contains syntax that doesn't work - # with node 14 - if: ${{ matrix.node != 14 }} - run: TIMING=1 pnpm lint + - name: Lint + run: pnpm lint diff --git a/README.md b/README.md index 6bc1262..de1caaf 100644 --- a/README.md +++ b/README.md @@ -197,3 +197,6 @@ Detailed changes for each release are documented in [CHANGELOG.md](./CHANGELOG.m ## License [MIT](http://opensource.org/licenses/MIT) + + + diff --git a/package.json b/package.json index 2c76b68..677d69b 100644 --- a/package.json +++ b/package.json @@ -10,9 +10,9 @@ ], "funding": "https://opencollective.com/eslint-plugin-prettier", "license": "MIT", - "packageManager": "pnpm@7.33.5", + "packageManager": "pnpm@8.15.6", "engines": { - "node": "^14.18.0 || >=16.0.0" + "node": ">=18.18.0" }, "main": "eslint-plugin-prettier.js", "types": "eslint-plugin-prettier.d.ts",