Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Network v1.1.0

Network v1.1.0 #31

Workflow file for this run

name: Node.js CI on Darwin
on:
push:
branches: [main]
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
node-version: [20.x]
npm-version: [9.x, 10.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test