Skip to content

sync from monorepo @ 448bfc0 #6

sync from monorepo @ 448bfc0

sync from monorepo @ 448bfc0 #6

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Type-check & build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
# No package-lock in the synced public repo (the monorepo's lock lives
# at the workspace root and isn't part of the sync), so skip cache: npm.
- run: npm install --ignore-scripts
- name: Type check
run: npx tsc --noEmit
- name: Build
run: npm run build