Skip to content

refactor: update API route handlers and improve type handling; add CI… #1

refactor: update API route handlers and improve type handling; add CI…

refactor: update API route handlers and improve type handling; add CI… #1

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Dependencies
run: npm install -g pnpm && pnpm install
- name: Copy .env.example files
shell: bash
run: find . -type f -name ".env.example" -exec sh -c 'cp "$1" "${1%.*}"' _ {} \;
- name: Typecheck
run: pnpm typecheck
- name: Lint
run: pnpm lint