Skip to content

fix(deps): update dependency mqtt to v5 #329

fix(deps): update dependency mqtt to v5

fix(deps): update dependency mqtt to v5 #329

Workflow file for this run

name: Application
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install
working-directory: app
run: |
npm install
- name: Lint/Test
working-directory: app
run: |
npm run lint
npm test
- name: Build
working-directory: app
run: |
npm run build
- name: Build container
run: docker-compose build