forked from limitd/limitdb
-
Notifications
You must be signed in to change notification settings - Fork 12
53 lines (40 loc) · 1.16 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: install redis-cli
run: sudo apt-get install redis-tools
- name: Install dependencies
run: npm install
- name: Setup Standalone Tests
run: make test-standalone-setup
- name: Run Standalone tests
run: make test-standalone
- name: Teardown Standalone Tests
run: make test-standalone-teardown
- name: Setup Clustered Tests
run: make test-cluster-setup
- name: Check Redis Cluster
run: timeout 60 bash <<< "until redis-cli -c -p 16371 cluster info | grep 'cluster_state:ok'; do sleep 1; done"
- name: Run Clustered tests
run: make test-cluster
- name: Teardown Clustered Tests
run: make test-cluster-teardown