Skip to content

chore: bumped version to v2.5.19 #157

chore: bumped version to v2.5.19

chore: bumped version to v2.5.19 #157

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
build:
strategy:
fail-fast: false
max-parallel: 1
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
node-version: [16.x, 18.x, 20.x]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.platform }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
env:
DEBUG: sol2uml
CI: true
NODE_URL: ${{ secrets.NODE_URL }}