Skip to content

Update README file and enhance documentation (#5) #8

Update README file and enhance documentation (#5)

Update README file and enhance documentation (#5) #8

Workflow file for this run

name: Execute all unit tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn test
env:
CI: true