chore: removed ping in favor of ioredis keepalive (#86) #151
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
env: | |
CI: true | |
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 |