mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
39 lines
817 B
YAML
39 lines
817 B
YAML
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 server dependencies
|
|
run: npm install --workspace=@paseo/server --include-workspace-root
|
|
|
|
- name: Typecheck
|
|
run: npm run typecheck --workspace=@paseo/server
|
|
|
|
- name: Test
|
|
run: npm run test --workspace=@paseo/server
|