Skip to content

small fix in the README #368

small fix in the README

small fix in the README #368

Workflow file for this run

name: Run Tests
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.10.0'
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test