Skip to content

Commit

Permalink
feat: dropping support for node 14
Browse files Browse the repository at this point in the history
  • Loading branch information
erunion committed Jun 1, 2023
1 parent 74da248 commit a494b4b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ jobs:
strategy:
matrix:
node-version:
- 14
- 16
- 18
- 19
- 20

steps:
- uses: actions/[email protected]
Expand All @@ -21,10 +22,5 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

# Node 14 ships with npm@6 which doesn't install peerDeps by default.
- name: Install npm@7
if: matrix.node-version == '14'
run: npm install -g npm@7

- run: npm ci
- run: npm test
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"author": "Jon Ursenbach <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=14"
"node": ">=16"
},
"dependencies": {
"@types/har-format": "^1.2.8",
Expand Down

0 comments on commit a494b4b

Please sign in to comment.