Skip to content

Updating README.

Updating README. #4

Workflow file for this run

name: CI build
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Using Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: git diff --exit-code
- run: npm install --frozen-lockfile
- run: npm test