Skip to content

Commit 6142d98

Browse files
stevefan1999-personalkibertoad
andauthoredSep 11, 2023
Update package.json to get over Node 14 (#5684)
Co-authored-by: Igor Savin <[email protected]>
1 parent 5ececd3 commit 6142d98

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

Diff for: ‎.github/workflows/integration-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
node-version: [18.x, 16.x, 14.x, 12.x]
23+
node-version: [18.x, 16.x]
2424
database-type:
2525
[
2626
postgres,

Diff for: ‎.github/workflows/unit-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
node-version: [18.x, 16.x, 14.x, 12.x]
22+
node-version: [18.x, 16.x]
2323

2424
steps:
2525
- name: Checkout Repository

Diff for: ‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "knex",
66
"types": "types/index.d.ts",
77
"engines": {
8-
"node": ">=12"
8+
"node": ">=16"
99
},
1010
"scripts": {
1111
"build": "npm run build:gitignore && npm run build:ts && npm run format",

0 commit comments

Comments
 (0)
Please sign in to comment.