Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,15 @@ jobs:
- 24
os:
- ubuntu-latest
postgres-version:
- 14
- 15
- 16
- 17
- 18
services:
postgres:
image: postgres:9-alpine
image: postgres:${{ matrix.postgres-version }}-alpine
Comment thread
simoneb marked this conversation as resolved.
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
Expand Down
15 changes: 7 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"posttest": "tsd",
"test:security": "node ./sqlmap/sqlmap.js",
"test:typescript": "tsd",
"pretest:security": "napa https://github.com/sqlmapproject/sqlmap && node ./sqlmap/db-init.js",
"pretest:security": "git clone --depth=1 https://github.com/sqlmapproject/sqlmap node_modules/sqlmap && node ./sqlmap/db-init.js",
"lint": "standard",
"benchmark": "node benchmark/index.js"
},
Expand All @@ -24,15 +24,14 @@
},
"homepage": "https://github.com/nearform/sql#readme",
"devDependencies": {
"@fastify/postgres": "^5.2.0",
"async": "^3.2.0",
"@fastify/postgres": "^6.0.2",
"async": "^3.2.6",
"benchmark": "^2.1.4",
"fastify": "^4.0.1",
"jsonfile": "^6.1.0",
"napa": "^3.0.0",
Comment thread
simoneb marked this conversation as resolved.
"pg": "^8.6.0",
"fastify": "^5.8.5",
"jsonfile": "^6.2.1",
"pg": "^8.20.0",
"sql-template-strings": "^2.2.2",
"standard": "^17.0.0",
"standard": "^17.1.2",
"tsd": "^0.33.0"
},
"standard": {
Expand Down
Loading