Skip to content

Update README.md

Update README.md #38

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
Testing:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14, 16, 18]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test