Skip to content

fix: module exports #761

fix: module exports

fix: module exports #761

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install dependencies
run: yarn install
- name: Lint files
run: yarn lint
- name: Type check files
run: yarn tsc
- name: Run tests
run: yarn test