Skip to content

chore: setup ci to run on prs #3

chore: setup ci to run on prs

chore: setup ci to run on prs #3

Workflow file for this run

name: mChat Client CI
on:
push:
branches:
- main
paths:
- .github/workflows/client-ci.yml
- client/*
pull_request:
branches:
- main
paths:
- .github/workflows/client-ci.yml
- client/*
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install deps
run: pnpm i --filter client
- name: Lint
run: pnpm --filter client lint
- name: Build
run: pnpm --filter client build