From 95d57f8238ae7e8c72c27c1036f3b060c16638de Mon Sep 17 00:00:00 2001 From: seveibar Date: Fri, 9 Aug 2024 21:27:31 -0700 Subject: [PATCH] typecheck workflow fix --- .github/workflows/typecheck.yml | 3 +++ README.md | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/typecheck.yml b/.github/workflows/typecheck.yml index ee3f891a..2fb4c2ab 100644 --- a/.github/workflows/typecheck.yml +++ b/.github/workflows/typecheck.yml @@ -22,5 +22,8 @@ jobs: - name: Install dependencies run: bun i + - name: Build (required for dist imports) + run: bun run build + - name: Run format check run: bunx tsc --noEmit diff --git a/README.md b/README.md index b2c1d2c0..baaebaf6 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ tsci publish This project is developed with [bun](https://bun.sh/), make sure you have that installed. -Run `bun install` to install dependencies and `bun cli/cli.ts` to run test the cli in development. +Run `bun install` to install dependencies and `bun cli/cli.ts` to run test the cli in development, or `bun run dev` to run the dev server. To run tests, run `bun test`