Skip to content
This repository has been archived by the owner on Mar 17, 2023. It is now read-only.

Update README.md

Update README.md #183

Workflow file for this run

name: Testing
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 13.x, 14.x, 15.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node ${{matrix.node-version}}
uses: actions/setup-node@v1
with:
node-version: ${{matrix.node-version}}
- run: npm ci
- run: npm run test