Skip to content

Update README.md

Update README.md #209

Workflow file for this run

name: Tests
on: [push]
env:
NODE_OPTIONS: '--max_old_space_size=4096'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
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.js dependencies
run: yarn --frozen-lockfile
- name: Test coverage
run: yarn test