Skip to content

WEB-108 Add duplicate document action, refactor actions and utils (#111) #147

WEB-108 Add duplicate document action, refactor actions and utils (#111)

WEB-108 Add duplicate document action, refactor actions and utils (#111) #147

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: package-lock.json
- name: Install dependencies
run: npm ci
- name: Generate Prisma Client
run: npx prisma generate
- name: Lint
run: npm run lint
- name: Typecheck
run: npx tsc --noEmit