Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Reverting the dist names back to graphlib #289

Reverting the dist names back to graphlib

Reverting the dist names back to graphlib #289

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:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: |
npm install
- name: Lint
run: |
make lint
- name: Build
run: |
make build
- name: Test
run: |
make test