Skip to content

feat: business_unit partitioning for agenda, goals, cc_tasks (#20) #22

feat: business_unit partitioning for agenda, goals, cc_tasks (#20)

feat: business_unit partitioning for agenda, goals, cc_tasks (#20) #22

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
name: Test & Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: web/package-lock.json
- name: Install dependencies
working-directory: web
run: npm ci
- name: Typecheck
working-directory: web
run: npm run typecheck
- name: Test
working-directory: web
run: npm test