Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Commit

Permalink
feat: dropping support for node 16 (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
erunion authored Sep 12, 2023
1 parent ccfd914 commit 2a55832
Show file tree
Hide file tree
Showing 5 changed files with 371 additions and 249 deletions.
2 changes: 2 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
// `any` types are fine because we're dealing with a lot of unknown data.
"@typescript-eslint/no-explicit-any": "off",

"unicorn/prefer-node-protocol": "error",

"you-dont-need-lodash-underscore/get": "off",
"you-dont-need-lodash-underscore/set": "off"
}
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: npm

- run: npm ci
Expand All @@ -31,13 +31,12 @@ jobs:
- ubuntu-latest
- windows-latest
node:
- 16
- 18
- 20

steps:
- name: Checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Node ${{ matrix.node }}
uses: actions/setup-node@v3
Expand Down
15 changes: 0 additions & 15 deletions jest.config.js

This file was deleted.

Loading

0 comments on commit 2a55832

Please sign in to comment.