Skip to content

docs(readme): update docs for custom matcher #16

docs(readme): update docs for custom matcher

docs(readme): update docs for custom matcher #16

Workflow file for this run

name: Test
on: [push]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [14.x, 15.x, 16.x, 17.x, 18.x, 19.x, 20.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install node dependencies
run: npm install
- name: Run tests
run: npm test