Skip to content

feat: Add user search functionality #1540

feat: Add user search functionality

feat: Add user search functionality #1540

Workflow file for this run

name: Lint and Build
on:
push:
branches:
'*'
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: |
cd client
npm install -g pnpm
pnpm install
- name: Lint and Format
run: |
cd client
pnpm lint
pnpm format