Skip to content

Redis adapter is not correctly cleaning up/unsubscribing topics when handling socketIO middleware errors #304

Redis adapter is not correctly cleaning up/unsubscribing topics when handling socketIO middleware errors

Redis adapter is not correctly cleaning up/unsubscribing topics when handling socketIO middleware errors #304

Workflow file for this run

name: CI
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0'
permissions:
contents: read
jobs:
test-node:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 12
- 18
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test