Skip to content

Add endpoint to return event counts by stream #9

Add endpoint to return event counts by stream

Add endpoint to return event counts by stream #9

Workflow file for this run

name: 'build server'
on: # rebuild any PRs and any branch changes for the server directory
pull_request:
push:
paths:
server/**
jobs:
build-server:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.2
with:
version: 7
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "19"
cache: pnpm
cache-dependency-path: 'server/pnpm-lock.yaml'
- name: Install dependencies
run: pnpm install
working-directory: server
- name: Build server typescript
run: pnpm run build
working-directory: server