Skip to content

Commit

Permalink
ci: bump node versions (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats authored Dec 13, 2023
1 parent 2bd6544 commit 41c27ca
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [16, 18]
node-version: [18, 20]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
env:
MYSQL_DB_DATABASE: keyv_test
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
run_install: true
- run: pnpm test
- name: Report
run: mkdir -p coverage && npx c8 report --reporter=text-lcov > coverage/lcov.info
run: npx c8 report --reporter=text-lcov > coverage/lcov.info
- name: Coverage
uses: coverallsapp/github-action@main
with:
Expand Down
2 changes: 1 addition & 1 deletion packages/compress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"devDependencies": {
"@keyvhq/core": "latest",
"ava": "latest"
"ava": "5"
},
"engines": {
"node": ">= 16"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"devDependencies": {
"@keyvhq/test-suite": "latest",
"@types/node": "latest",
"ava": "latest",
"ava": "5",
"timekeeper": "latest",
"tsd": "latest",
"typescript": "latest"
Expand Down
2 changes: 1 addition & 1 deletion packages/file/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@keyvhq/core": "latest",
"@keyvhq/test-suite": "latest",
"@types/node": "latest",
"ava": "latest",
"ava": "5",
"tsd": "latest",
"typescript": "latest"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/memoize/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"mimic-fn": "~3.0.0"
},
"devDependencies": {
"ava": "latest"
"ava": "5"
},
"engines": {
"node": ">= 16"
Expand Down
2 changes: 1 addition & 1 deletion packages/mongo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@keyvhq/core": "latest",
"@keyvhq/test-suite": "latest",
"@types/node": "latest",
"ava": "latest",
"ava": "5",
"tsd": "latest",
"typescript": "latest"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/multi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"devDependencies": {
"@keyvhq/compress": "latest",
"@keyvhq/sqlite": "latest",
"ava": "latest",
"ava": "5",
"tsd": "latest",
"typescript": "latest"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/mysql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@keyvhq/core": "latest",
"@keyvhq/test-suite": "latest",
"@types/node": "latest",
"ava": "latest",
"ava": "5",
"tsd": "latest",
"typescript": "latest"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/offline/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@aws-sdk/client-s3": "latest",
"@keyvhq/core": "latest",
"@keyvhq/redis": "latest",
"ava": "latest",
"ava": "5",
"keyv-s3": "latest"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/postgres/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@keyvhq/core": "latest",
"@keyvhq/test-suite": "latest",
"@types/node": "latest",
"ava": "latest",
"ava": "5",
"tsd": "latest",
"typescript": "latest"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/redis/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@keyvhq/test-suite": "latest",
"@types/ioredis": "latest",
"@types/node": "latest",
"ava": "latest",
"ava": "5",
"tsd": "latest",
"typescript": "latest"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/sql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@keyvhq/core": "latest",
"@keyvhq/test-suite": "latest",
"@vscode/sqlite3": "latest",
"ava": "latest",
"ava": "5",
"pify": "5"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/sqlite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@keyvhq/core": "latest",
"@keyvhq/test-suite": "latest",
"@types/node": "latest",
"ava": "latest",
"ava": "5",
"tsd": "latest",
"typescript": "latest"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/stats/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"devDependencies": {
"@keyvhq/core": "latest",
"@keyvhq/file": "latest",
"ava": "latest",
"ava": "5",
"tsd": "latest",
"typescript": "latest"
},
Expand Down

0 comments on commit 41c27ca

Please sign in to comment.