From ce7caa418c908a26a7e10971d4c32a470742ff87 Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Thu, 12 Mar 2026 10:22:54 -0500 Subject: [PATCH 1/2] faster ci --- .github/workflows/ci.yml | 57 ++++++++++++++++++++++------------------ 1 file changed, 32 insertions(+), 25 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 893293b8..3bfc5563 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,34 +13,41 @@ concurrency: cancel-in-progress: true jobs: - ci: - name: Lint, Type Check & Build + lint: + name: Lint runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Install pnpm - uses: pnpm/action-setup@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 + - uses: actions/checkout@v4 + - uses: pnpm/action-setup@v4 + - uses: actions/setup-node@v4 with: node-version: 20 - cache: "pnpm" - - - name: Install dependencies - run: pnpm install --frozen-lockfile + cache: pnpm + - run: pnpm install --frozen-lockfile + - run: pnpm lint - - name: Lint - run: pnpm lint - - - name: Type check - run: pnpm type-check - - - name: Test - run: pnpm test + test: + name: Test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: pnpm/action-setup@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + cache: pnpm + - run: pnpm install --frozen-lockfile + - run: pnpm test - - name: Build - run: pnpm build + typecheck: + name: Type Check + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: pnpm/action-setup@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + cache: pnpm + - run: pnpm install --frozen-lockfile + - run: pnpm type-check From 09488c395ca20dc7938a5de2a3b728fbb9f884c3 Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Thu, 12 Mar 2026 12:03:11 -0500 Subject: [PATCH 2/2] fix workflow --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3bfc5563..0fdc0ac6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,6 +37,8 @@ jobs: node-version: 20 cache: pnpm - run: pnpm install --frozen-lockfile + - name: Build packages + run: pnpm turbo run build --filter='./packages/*' - run: pnpm test typecheck: