IOTConnect-Web/node_modules/mqtt-packet/.github/workflows/ci.yml

28 lines
442 B
YAML
Raw Normal View History

2024-05-09 01:49:52 +00:00
name: ci
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
npm install
- name: Run tests
run: |
npm run ci