Skip to content

Bump mqtt from 5.5.3 to 5.5.5 in /lib #9

Bump mqtt from 5.5.3 to 5.5.5 in /lib

Bump mqtt from 5.5.3 to 5.5.5 in /lib #9

Workflow file for this run

name: Run lib tests
on:
pull_request:
branches:
- main
paths:
- 'lib/**'
jobs:
test-lib:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: 'lib/package-lock.json'
- name: Install Node.js dependencies
run: npm ci
working-directory: ./lib
- run: npm run test
working-directory: ./lib