Skip to content

Update README.md

Update README.md #17

Workflow file for this run

name: tests
on:
workflow_call:
push:
branches: ['*']
pull_request:
branches: ['*']
jobs:
run:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install Dependencies
run: npm ci
- name: Run Tests
run: npm test