Skip to content

[WIP] feat: add shared models and reusable hooks for table state management… #154

[WIP] feat: add shared models and reusable hooks for table state management…

[WIP] feat: add shared models and reusable hooks for table state management… #154

Workflow file for this run

name: Linters and tests
on: [push, pull_request]
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Copy envs
run: cp .env.dist .env
- name: Install root dependencies
uses: bahmutov/npm-install@v1
- name: Typecheck
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Test
run: npm run test
env:
CI: true