Skip to content

feat: alerts page, worker Dockerfile, sidebar bell icon #2

feat: alerts page, worker Dockerfile, sidebar bell icon

feat: alerts page, worker Dockerfile, sidebar bell icon #2

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: [main]
jobs:
ci:
name: Lint, Type-check & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Generate Prisma client
run: npx prisma generate
- name: Lint
run: npm run lint
- name: Type-check
run: npx tsc --noEmit
- name: Test
run: npm test
env:
DATABASE_URL: "postgresql://test:test@localhost:5432/test"
AUTH_SECRET: "test-secret-for-ci"
REDIS_URL: "redis://localhost:6379"