From ef0e001548dd1fe6389ec576e3bf43d3123eb68d Mon Sep 17 00:00:00 2001 From: "Victor A." <52110451+cs50victor@users.noreply.github.com> Date: Wed, 21 Feb 2024 14:09:25 -0500 Subject: [PATCH] fix: ci --- .github/workflows/ci-ts.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-ts.yml b/.github/workflows/ci-ts.yml index 87001d0..7231259 100644 --- a/.github/workflows/ci-ts.yml +++ b/.github/workflows/ci-ts.yml @@ -36,6 +36,14 @@ jobs: - name: Install Global Dependencies run: bun install --ignore-scripts - # Errors out on build when separated into multiple steps - - name: Install, Build, and Lint Demo - run: cd demo && bun install --ignore-scripts && bun run build && bun run lint + - name: Install + working-directory: ./www + run: bun install --ignore-scripts + + - name: Build + working-directory: ./www + run: bun run build + + - name: Lint + working-directory: ./www + run: bun run lint