Skip to content

Update README.md

Update README.md #610

Workflow file for this run

name: Node.js CI
on:
workflow_dispatch:
pull_request:
branches:
- master
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Run Tests
run: npm run test-ci