Skip to content
This repository was archived by the owner on Jun 4, 2025. It is now read-only.

Commit 01044b6

Browse files
committed
add makefile to support testing
1 parent 1c7fe18 commit 01044b6

File tree

1 file changed

+20
-14
lines changed

1 file changed

+20
-14
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,23 +26,29 @@ jobs:
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828

29-
- name: Install dependencies
30-
run: npm install
31-
32-
- name: Setup Standalone Tests
33-
run: make test-standalone-setup
34-
35-
- name: Run Standalone tests
36-
run: make test-standalone
37-
38-
- name: Teardown Standalone Tests
39-
run: make test-standalone-teardown
40-
29+
- name: install redis-ci
30+
run: sudo apt-get install redis-tools
31+
32+
# - name: Install dependencies
33+
# run: npm install
34+
35+
# - name: Setup Standalone Tests
36+
# run: make test-standalone-setup
37+
#
38+
# - name: Run Standalone tests
39+
# run: make test-standalone
40+
#
41+
# - name: Teardown Standalone Tests
42+
# run: make test-standalone-teardown
43+
#
4144
- name: Setup Clustered Tests
4245
run: make test-cluster-setup
4346

44-
- name: Run Clustered tests
45-
run: make test-cluster
47+
- name: Check Redis Cluster
48+
run: redis-cli -c -p 16371 cluster info
49+
50+
# - name: Run Clustered tests
51+
# run: make test-cluster
4652

4753
- name: Teardown Clustered Tests
4854
run: make test-cluster-teardown

0 commit comments

Comments
 (0)