Skip to content

WEB-63 Fix squished document cards in DocumentList (#93) #106

WEB-63 Fix squished document cards in DocumentList (#93)

WEB-63 Fix squished document cards in DocumentList (#93) #106

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: src/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: src
- name: Generate Prisma Client
run: npx prisma generate
working-directory: src
- name: Lint
run: npm run lint
working-directory: src
- name: Typecheck
run: npx tsc --noEmit
working-directory: src