Skip to content

Merge pull request #77 from martin-doyle/feature #150

Merge pull request #77 from martin-doyle/feature

Merge pull request #77 from martin-doyle/feature #150

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm install -g node-red
- run: npm link node-red
- run: npm install -g mocha
- run: npm install -g semistandard
- run: npm install -g snazzy
- run: npm run build --if-present
- run: npm test
env:
CI: true