Skip to content

feat: added acknowledgement reaction to issue #8

feat: added acknowledgement reaction to issue

feat: added acknowledgement reaction to issue #8

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
env:
# Tests/build use an ephemeral SQLite file — no external services needed.
DATABASE_URL: file:./ci.db
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
# Installs every workspace from the single root lockfile.
- run: npm ci
- name: Generate Prisma client
run: npm run prisma:generate
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Build
run: npm run build
- name: Unit tests
run: npm test
- name: E2E tests
run: npm run test:e2e