UNPKG

cytoscape

Version:

Graph theory (a.k.a. network) library for analysis and visualisation

20 lines (19 loc) 441 B
name: Automated tests on: [push, pull_request] permissions: contents: read jobs: ci: runs-on: ubuntu-latest timeout-minutes: 5 steps: - uses: actions/checkout@v7 - uses: actions/setup-node@v7 with: node-version-file: .nvmrc - name: Install dependencies run: npm ci - name: Install Playwright Browsers run: npx playwright install --with-deps - name: Run tests run: npm test