Skip to content

Update README.md

Update README.md #477

Workflow file for this run

name: Tests
on: [push, workflow_dispatch]
jobs:
Tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
uses: bahmutov/npm-install@v1
- run: npm run test
env:
tests: true