Skip to content

fix: use currentNodeParams from NetworkNavigation and fix ESLint warnings #41

fix: use currentNodeParams from NetworkNavigation and fix ESLint warnings

fix: use currentNodeParams from NetworkNavigation and fix ESLint warnings #41

Workflow file for this run

name: vis-network CI
on:
push:
branches:
- main
paths:
- workspaces/vis-network/**
pull_request:
paths:
- workspaces/vis-network/**
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
fail-fast: false
steps:
- name: Harden Runner
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm i
- name: Run tests
run: npm run test