Skip to content

feat: device type intent routing for generation pipeline (#46) #68

feat: device type intent routing for generation pipeline (#46)

feat: device type intent routing for generation pipeline (#46) #68

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
frontend:
name: Frontend (build + lint)
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: frontend/package-lock.json
- run: npm ci
- run: npx tsc -b --noEmit
- run: npm run lint
functions:
name: Functions (build)
runs-on: ubuntu-latest
defaults:
run:
working-directory: functions
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: functions/package-lock.json
- run: npm ci
- run: npm run build