From daa4f560180fd35b1deaba38cbc99caec27045e1 Mon Sep 17 00:00:00 2001 From: Mohamed Boudra Date: Fri, 10 Apr 2026 23:31:38 +0000 Subject: [PATCH] ci: add missing highlight build step to app-tests job The app-tests CI job was missing the `npm run build --workspace=@getpaseo/highlight` step that all other jobs have. This caused diff-highlighter.test.ts to fail with "Failed to resolve entry for package @getpaseo/highlight" because the dist/ directory did not exist. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04b70c0bb..48eb77ea6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,6 +88,9 @@ jobs: - name: Install dependencies run: npm install + - name: Build highlight dependency + run: npm run build --workspace=@getpaseo/highlight + - name: Run app unit tests run: npm run test --workspace=@getpaseo/app