ci: add server CI workflow for typecheck and tests

This commit is contained in:
Mohamed Boudra
2026-01-08 18:23:22 +07:00
parent be33676bb6
commit 889e291e14

38
.github/workflows/server-ci.yml vendored Normal file
View File

@@ -0,0 +1,38 @@
name: Server CI
on:
push:
branches: [main]
paths:
- 'packages/server/**'
- 'package.json'
- 'package-lock.json'
- '.github/workflows/server-ci.yml'
pull_request:
branches: [main]
paths:
- 'packages/server/**'
- 'package.json'
- 'package-lock.json'
- '.github/workflows/server-ci.yml'
jobs:
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: Typecheck
run: npm run typecheck --workspace=@paseo/server
- name: Test
run: npm run test --workspace=@paseo/server