Skip to content

updated readme

updated readme #8

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
branches:
- master
release:
types:
- released
workflow_dispatch: {}
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
name: Testing on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
- run: npm install
- run: npm test