Skip to content

Show only users in find-the-expert if they selected that role #193

Show only users in find-the-expert if they selected that role

Show only users in find-the-expert if they selected that role #193

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
- name: '📩 npm install'
run: npm install
- name: '💅 Prepare'
run: |
cp .env.example .env
npm run db:generate
- name: '🔍 TypeScript type checking'
run: npm run typecheck
- name: '🧹 Linting'
run: npm run lint
- name: '🏗 Build'
run: npm run build