fix(test): close all open connections in abstract_client test #875
Workflow file for this run
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: 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: [18.x, 20.x] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Lint | |
if: matrix.node-version == '20.x' | |
# only run on latest node version, no reason to run on all | |
run: | | |
npm run lint | |
- name: Test NodeJS | |
run: npm run test:node | |
timeout-minutes: 5 | |
env: | |
CI: true | |
DEBUG: "${{ runner.debug == '1' && 'mqttjs:*' || '' }}" | |