Skip to content

fix: right aligned msg text and cropped emoji picker.. #22

fix: right aligned msg text and cropped emoji picker..

fix: right aligned msg text and cropped emoji picker.. #22

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-server:
runs-on: ubuntu-latest
env:
DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/postgres"
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm'
cache-dependency-path: server/package-lock.json
- name: Install dependencies
run: cd server && npm install
- name: Generate Prisma Client
run: cd server && npm run prisma:generate
- name: Build
run: cd server && npm run build
build-client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm'
cache-dependency-path: client/package-lock.json
- name: Install dependencies
run: cd client && npm install
- name: Build
run: cd client && npm run build