Skip to content

1.8.0

1.8.0 #53

Workflow file for this run

name: MacOS
on: [push, pull_request]
jobs:
build:
runs-on: macOS-latest
strategy:
matrix:
node-version: [12, 14, 16, 18, 19]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm i
npm test