Skip to content

feat: added getPercentile function #21

feat: added getPercentile function

feat: added getPercentile function #21

Workflow file for this run

name: Tests
on:
pull_request
jobs:
unit_test:
name: Unit tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20.x
- 18.x
- 16.x
steps:
- uses: actions/checkout@v3
- name: install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: install dependencies
run: pnpm install --frozen-lockfile
env:
CI: true
- name: test
run: pnpm test