Skip to content

Fix bugs

Fix bugs #115

Workflow file for this run

name: CI tests
on:
pull_request:
branches: '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '19.x'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run tests
run: yarn test