We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad18f21 commit 3cf16aaCopy full SHA for 3cf16aa
2 files changed
.github/workflows/test.yml
@@ -10,6 +10,17 @@ jobs:
10
strategy:
11
matrix:
12
node-version: ["lts/iron", "lts/jod", "latest"]
13
+ redis-version: [6, 7, "latest"]
14
+
15
+ services:
16
+ redis:
17
+ image: grokzen/redis-cluster:${{ matrix.redis-version }}
18
+ env:
19
+ REDIS_CLUSTER_IP: 0.0.0.0
20
+ IP: 0.0.0.0
21
+ STANDALONE: 'true'
22
+ ports:
23
+ - "7000-7005:7000-7005"
24
25
steps:
26
- name: Checkout code
@@ -24,4 +35,4 @@ jobs:
35
run: npm install
36
37
- name: Run tests
27
- run: npm run test:docker
38
+ run: npm run test
compose.yml
@@ -1,7 +1,7 @@
1
services:
2
redis:
3
platform: linux/x86_64
4
- image: grokzen/redis-cluster:6.2.10
+ image: grokzen/redis-cluster:latest
5
ports:
6
- "7000-7005:7000-7005"
7
environment:
0 commit comments