Skip to content

BREAKING: Drop support for Node.js 14-15,17,19 #3

BREAKING: Drop support for Node.js 14-15,17,19

BREAKING: Drop support for Node.js 14-15,17,19 #3

Workflow file for this run

name: ci
on: [pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14.x, 16.x, 18.x, 20.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: ${{ matrix.os }} / Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
sudo apt install -y --no-install-recommends graphviz
npm i -g npm@9
npm ci
npm run test
npm run debug
npm run generate