Skip to content

add typecheck command #22

add typecheck command

add typecheck command #22

Workflow file for this run

name: Build and Test
on:
push:
branches: [main, dev]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies, Build, and Test
run: |
npm ci
npx prisma generate --no-engine
npm run build --if-present