Skip to content

feat: option to disable writeCache and fix leak in subscriptions #156

feat: option to disable writeCache and fix leak in subscriptions

feat: option to disable writeCache and fix leak in subscriptions #156

Workflow file for this run

name: MQTT.js Tests
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Debug Filter'
required: true
default: 'mqttjs*'
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- name: Node Tests
run: npm run test:node
env:
CI: true
DEBUG: "mqttjs"
- name: Test Typescript
run: npm run test:typescript
env:
CI: true
DEBUG: "mqttjs"