Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 3 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,6 @@ jobs:
eslint:
- 9
- 8
include:
- node: 16
eslint: 8
- node: 14
eslint: 8

steps:
- name: Checkout Repo
Expand All @@ -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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,3 +197,6 @@ Detailed changes for each release are documented in [CHANGELOG.md](./CHANGELOG.m
## License

[MIT](http://opensource.org/licenses/MIT)

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down