Skip to content

Merge pull request #77 from microcks/dependabot/npm_and_yarn/mqtt-5.10.3 #75

Merge pull request #77 from microcks/dependabot/npm_and_yarn/mqtt-5.10.3

Merge pull request #77 from microcks/dependabot/npm_and_yarn/mqtt-5.10.3 #75

Workflow file for this run

name: build-verify-package
on:
push:
paths-ignore:
- '.github/**'
- '.gitignore'
- 'LICENSE'
- '*.md'
pull_request:
paths-ignore:
- '.github/**'
- '.gitignore'
- 'LICENSE'
- '*.md'
permissions: read-all
jobs:
build-verify-package:
runs-on: ubuntu-latest
environment: Build
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: 'npm'
- name: Dependencies installation
run: npm install
- name: Run unit tests
run: npm run test
- name: Typescript compilation and Package build
run: npm run build