1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-17 19:41:06 +03:00

update tsconfig.json to support node 12, run tests on Redis 5 & 6 and on all node live versions

This commit is contained in:
leibale
2021-07-08 18:20:41 -04:00
parent 62d393a840
commit 7d04ddc4cf
2 changed files with 4 additions and 3 deletions

View File

@@ -12,8 +12,8 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [16.x]
redis-version: [6.x]
node-version: [12.x, 14.x, 16.x, 17.x, 18.x]
redis-version: [6.x, 5.x]
steps:
- uses: actions/checkout@v2.3.4

View File

@@ -1,7 +1,8 @@
{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"lib": ["es2019", "es2020.bigint", "es2020.string", "es2020.symbol.wellknown"],
"target": "es2019",
"module": "CommonJS",
"moduleResolution": "Node",
"esModuleInterop": true,