Skip to content

Interval improvements and add tests #3

Interval improvements and add tests

Interval improvements and add tests #3

Workflow file for this run

name: Code Quality Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run ESLint
run: yarn lint
- name: Run tests
run: yarn test