From de9bcb89f0214ea263a14c88069aaa3ee0408d03 Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Wed, 26 Nov 2025 18:36:44 +1000 Subject: [PATCH] fix: add build step to lint job in CI workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The lint job needs packages to be built first because @tpmjs/ui's lint script runs eslint, which is a local dependency that needs the package to be built before it can be executed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f947db0..4878fb8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,6 +28,9 @@ jobs: - name: Install dependencies run: pnpm install --frozen-lockfile + - name: Build packages + run: pnpm build + - name: Lint run: pnpm lint