Router Metadata Enrichment Fix #1051
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test | |
on: | |
push: | |
branches: [ master, develop ] | |
pull_request: | |
branches: [ master, develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '23.6.0' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Setup Biome | |
uses: biomejs/setup-biome@v2 | |
- name: Run Biome | |
run: biome ci . | |
- name: TypeScript Check - Server | |
run: tsc --noEmit | |
- name: TypeScript Check - Client | |
run: tsc --noEmit -p src/client/tsconfig.json | |
- name: Build | |
run: npm run build |