Skip to content

fix: Fix omit and pick types #55

fix: Fix omit and pick types

fix: Fix omit and pick types #55

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout commit
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Read .nvmrc
run: |
NODE_VERSION=$(cat .nvmrc)
echo "NODE_VERSION=$NODE_VERSION" >> $GITHUB_OUTPUT
id: nvm
- name: Use Node.js ${{ steps.nvm.outputs.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
- name: Install Dependencies
run: yarn install
- name: Run linter
run: yarn lint
- name: Run formatter
run: yarn format
- name: Run typechecker
run: yarn typecheck
- name: Run tests
run: yarn test:no-watch
- name: Build
run: yarn build