Skip to content

v0.2.10

v0.2.10 #44

Workflow file for this run

name: Build and Test
on: [push]
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [
ubuntu-latest,
macos-latest,
# TODO get tests working in Windows
# windows-latest
]
steps:
- uses: actions/checkout@v1
- name: Use Node.js latest
uses: actions/setup-node@v3
with:
node-version: latest
- name: npm install, build, and test
run: |
npm i
npm test
env:
CI: true