Skip to content

Replacing the '#' to enforce private with '_' to suggest private #216

Replacing the '#' to enforce private with '_' to suggest private

Replacing the '#' to enforce private with '_' to suggest private #216

Workflow file for this run

name: Build Status
on:
push:
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- uses: browser-actions/setup-chrome@latest
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: |
npm install
sudo apt-get install graphviz xvfb
- name: Build
run: |
make build/graphlib.js build/graphlib.min.js
- name: Lint
run: |
make lint
- name: Test
run: |
KARMA_OPTS="--browsers Chrome" xvfb-run --auto-servernum make -e test