Skip to content

feat: implement new median function #5

feat: implement new median function

feat: implement new median function #5

Workflow file for this run

name: CI
on: push
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm ci
- name: Unit tests
run: npm test