Skip to content

fix: incorrect name in prod diagnostic #152

fix: incorrect name in prod diagnostic

fix: incorrect name in prod diagnostic #152

Workflow file for this run

name: ci
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v5
- uses: actions/setup-node@v6
with:
node-version: lts/*
cache: pnpm
- run: pnpm install --frozen-lockfile
# nostics dist is needed by every other task, so build first
# build, typecheck, and vitest (projects) also cover packages/*
- run: pnpm run build
# then run the rest in parallel: unit (coverage), types, lint, and the
# demo-lib build -> demo-lib test (guards a public type leak from nostics,
# TS2883 on declaration emit) -> playground build chain
- run: pnpm run "/^test:/"
# docs often run out of memory and is very slow, we will catch the error
# on Vercel deployments
# - run: pnpm -C docs run build