Skip to content

Fix: handle connection errors gracefully and add comprehensive tests #1

Fix: handle connection errors gracefully and add comprehensive tests

Fix: handle connection errors gracefully and add comprehensive tests #1

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20' # the project uses Node.js, version 20 is a good default
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test